According to wikipedia, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes.
user@host $ tar -tz -f archive.tar.gz
user@host $ tar -xzvf archive.tar.gz -C /a/folder
user@host $ tar -xzvf archive.tar.gz "./arch/file01" "./arch/file02"
root@host:~# apt-get install lzip
user@host $ tar --lzip -cvf archive.tar.lz /a/folder/*
user@host $ tar -cvf archive.tar /a/folder/*
user@host $ tar -czvf archive.tar.gz /a/folder/*
root@host~# tar cpjf backup.tgz /etc /var/log
root@host~# tar -jcvf - /my/fodler/ | ssh root@10.0.0.124 "cat > /backup/$(date +%Y.%m.%d)_backup.tgz"
root@host~# tar cvzf /$(date +%Y.%m.%d)_backup.tar.gz --exclude=/$(date +%Y.%m.%d)_backup.tar.gz --exclude=/dev --exclude=/mnt --exclude=/proc --exclude=/run --exclude=/sys --exclude=/tmp --exclude=/media --exclude=/lost+found /
Contact :