Scripting
Read More
Efficiently update a local copy of a site
This one is handy from cron wget –mirror http://www.example.com/
A chronological documentation test project, nothing serious, really!
This one is handy from cron wget –mirror http://www.example.com/
This is a simple way to synchronize all the files from the current computer to a remote computer using SSH as transportation protocol. rsync -raz –progress –delete –bwlimit=4096 /synchronize/from/this-folder/ remote-server:/to/this-folder/ This example is using PUT as transfer method because the files are put from the local computer to the remote. Options explained -r synchronize directories […]
dd bs=1M if=/dev/hda | gzip | ssh user@remote ‘dd of=hda.gz’