Delete files not modified in n days

Useful for clearing out caches that aren't properly cleaned out otherwise.

# Delete files not modified in 30 days
find /path/to/files* -mtime +30 -exec rm {} \;

Replace text in all files in & under the current directory

find . -type f -exec sed -i 's/old/new/g' {} \;


CategoryCheatSheet