ls -1R | wc -l
ls -1R | grep .*.mp3 | wc -l
ls -1R | wc -l
ls -1R | grep .*.mp3 | wc -l
$ dmidecode -t 17
http://www.cyberciti.biz/faq/howto-search-find-file-for-text-string
http://www.cyberciti.biz/tips/recover-mysql-root-password.html
find . -name ‘*attach*’ | xargs rm
To be even MORE accurate
find . -name ‘*attach*’ -print0 | xargs -0 rm
Will make sure you process any pesky files with spaces in their names
find ./ -printf %i’\n’ | sort -u | wc -l
rsync -avz -e “ssh -p 2222” /source/directory/ host@domain.com:/destination/directory/
( cd SOURCEDIR && tar cf – . ) | ssh target_address “(cd DESTDIR && tar xpf – )”