Shell tricks (1)
Some shell tricks, most of them interesting for deploying and handling your files:
find files recently modified (say in the last 2 days, -mtime 1):
1find . -type f -daystart -mtime 1
synchronize an entire directory to a remote server (overwrites everything, remote server has to have rsync installed too):
1rsync -avzpog yourdir you@remotebox:/remotedir/
other way around:
1rsync -avzpog you@remotebox:/remotedir/* yourdir/
build [...]