linux:tar
This is an old revision of the document!
tar -flags dest_file_name source_file_or_dir
Example | Explanation / Remarks |
---|---|
tar -czvf /home/user/dest_backup.tgz /var/www/source_dir/*.html | compress all files in source directory into the specified dest file |
tar -xzvf /home/user/backup_file.tgz /var/www/dest_dir/*.html | extract files in source file into the specified dest directory(??) |
Flag | Same as | Explanation / Remarks |
---|---|---|
c | create a new archive file | |
z | use gzip compress or uncompress | |
v | verbose output - show details while running | |
f | next parameter is the filename | |
x | extract compressed file | |
t | –list | list contents of file |
r | –append | append file(s) to tar file |
linux/tar.1654371943.txt.gz · Last modified: 2022/06/04 19:45 by levor