# find /var/log -name '*.log' | tar cv --files-from=- | bzip2 > log.tar.bz2find all files with '.log' extention and make an bzip archive [man]
# find /home/user1 -name '*.txt' | xargs cp -av --target-directory=/home/backup/ --parentsfind and copy all files with '.txt' extention from a directory to another [man]
# dd bs=1M if=/dev/hda | gzip | ssh user@ip_addr 'dd of=hda.gz'make a backup of a local hard disk on remote host via ssh [man]
# dd if=/dev/sda of=/tmp/file1backup content of the harddrive to a file [man]
# dd if=/dev/hda of=/dev/fd0 bs=512 count=1make a copy of MBR (Master Boot Record) to floppy [man]
# dd if=/dev/fd0 of=/dev/hda bs=512 count=1restore MBR from backup copy saved to floppy [man]
# dump -0aj -f /tmp/home0.bak /homemake a full backup of directory '/home' [man]
# dump -1aj -f /tmp/home0.bak /homemake a incremental backup of directory '/home' [man]
# restore -if /tmp/home0.bakrestoring a backup interactively [man]
# rsync -rogpav --delete /home /tmpsynchronization between directories [man]
# rsync -rogpav -e ssh --delete /home ip_address:/tmprsync via SSH tunnel [man]
# rsync -az -e ssh --delete ip_addr:/home/public /home/localsynchronize a local directory with a remote directory via ssh and compression [man]
# rsync -az -e ssh --delete /home/local ip_addr:/home/publicsynchronize a remote directory with a local directory via ssh and compression [man]
# tar -Puf backup.tar /home/usermake a incremental backup of directory '/home/user' [man]
# ( cd /tmp/local/ && tar c . ) | ssh -C user@ip_addr 'cd /home/share/ && tar x -p'copy content of a directory on remote directory via ssh [man]
# ( tar c /home ) | ssh -C user@ip_addr 'cd /home/backup-home && tar x -p'copy a local directory on remote directory via ssh [man]