linux:tar
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
linux:tar [2022/06/04 09:01] – levor | linux:tar [2024/03/23 16:59] (current) – levor | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ==== tar -flags dest_file_name source_file_or_dir ==== | + | ==== tar -flags |
- | ^example^Explanation / Remarks^ | + | ^Example^Explanation / Remarks^ |
- | |tar -czvf /home/user/backup.tgz /var/www/html_files| compress | + | |tar -czvf /home/user/dest_backup.tgz /var/www/source_dir/ |
- | + | |tar -xzvf /home/ | |
- | + | |**Using find:**|| | |
- | ^Flag^Explanation | + | |find /var/log -iname ' |
- | |c|create a new archive | + | |find . -type f > list_of_files.txt && tar -czf bu_file.tar.gz -T list_of_files.txt|| |
- | |z|use gzip compress or uncompress| | + | |find . -type f -exec tar -czf {}.tar.gz {} \;|!<- TODO! FIXME| |
- | |v|verbose output | + | |
- | |f|next parameter is the filename| | + | |
- | |x|extract compressed file| | + | |
+ | ^Flag^Same as^Explanation / Remarks^ | ||
+ | |c| |create a new archive file| | ||
+ | |f| |next parameter is the filename| | ||
+ | |r|%%--%%append|append file(s) to tar file| | ||
+ | |t|%%--%%list|list contents of file| | ||
+ | |T| |next param is filename containing list of files to be **tar**ed(!) <- TODO FIXME| | ||
+ | |v| |verbose output - show details while running| | ||
+ | |x| |extract compressed file| | ||
+ | |z| |use gzip compress or uncompress| | ||
+ | |-| |dash, as last symbol -> use stdin as input. usually, together with another program like **find**| | ||
linux/tar.1654333302.txt.gz · Last modified: 2022/06/04 09:01 by levor