Showing posts with label SVN. Show all posts
Showing posts with label SVN. Show all posts

Friday, November 05, 2010

Recursively delete .svn directories

$ rm -rf 'find . -type d -name .svn'
or
find . -iname ".svn" -print0 | xargs -0 rm -r

systemd-timesyncd

sudo apt update && sudo apt install systemd-timesyncd && sudo systemctl enable --now systemd-timesyncd