Sometimes people who use subversion need to delete all .svn folders in their working copy. To use below command you must be in root directory of your working copy and all .svn folders and files will be deleted.
find . -name .svn -exec rm -rf {} \;
Be careful you can not undo this
Here are commands I found useful:
mutt is great program for sending emails from command linedf for disks usage statstop for processor usagevnstat for network traffic usagelast user login statistic read from /var/log/wtmp fileComplete example using above commands will be:
> (top -b -n 1; df -h; vnstat -d; last) | mutt -s "Resource usage" your.email@example.com
Best is when you use this command in combination with cron:
0 5 * * * (top -b -n 1; df -h; vnstat -d; last) | mutt -s "Resource usage" your.email@example.com