Mar 31

I use thing to find where an error message came from or to check if I left behind any debuging/testing the code.

grep -R "string to search for" ./*

more info at grep man page

Mar 14
du -ks ./* | sort -n -r