Here’s another way of creating a tar ball from a list of files.
tar -cvf backup.tar.gz a.txt b.txt c.txt d.txt e.txt |
Here’s how to view files in a tarball.
tar -tvf backup.tar.gz |
cloud engineer
Here’s another way of creating a tar ball from a list of files.
tar -cvf backup.tar.gz a.txt b.txt c.txt d.txt e.txt |
tar -cvf backup.tar.gz a.txt b.txt c.txt d.txt e.txt
Here’s how to view files in a tarball.
tar -tvf backup.tar.gz |
tar -tvf backup.tar.gz
Here’s how to copy files from one directory to another.
rsync -arvz /dir1 /dir2 >> /tmp/rsync.log & |
rsync -arvz /dir1 /dir2 >> /tmp/rsync.log &
Format: rsynch –options source destination
Options