User Tools

Site Tools


linux:tar

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
linux:tar [2022/06/06 05:42] levorlinux:tar [2024/03/23 16:59] (current) levor
Line 3: Line 3:
  
 ^Example^Explanation / Remarks^ ^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 -czvf /home/user/dest_backup.tgz /var/www/source_dir/*.html| **c**=create **z**=use gzip **v**=verbose **f**=next param is target file. **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(??)| |tar -xzvf /home/user/backup_file.tgz /var/www/dest_dir/*.html| **extract** files in source file into the specified dest directory(??)|
-|find /var/log -iname '2022-06*.log' -print0 %%|%% tar -cvf /var/bu/june.tar --null -T -|using **find**|+|**Using find:**|| 
 +|find /var/log -iname '2022-06*.log' -print0 %%|%% tar -cvf /var/bu/june.tar --null -T -|
 +|find . -type f > list_of_files.txt && tar -czf bu_file.tar.gz -T list_of_files.txt|| 
 +|find . -type f -exec tar -czf {}.tar.gz {} \;|!<- TODO! FIXME|
  
 ^Flag^Same as^Explanation / Remarks^ ^Flag^Same as^Explanation / Remarks^
 |c| |create a new archive file| |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| |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| |x| |extract compressed file|
-|t|--list|list contents of file+|z| |use gzip compress or uncompress
-|r|--append|append file(s) to tar file| +|-| |dash, as last symbol -> use stdin as input. usually, together with another program like **find**|
-|-|dash, as last symbol -> use stdin as input. usually, together with another program like **find**|+
  
linux/tar.1654494171.txt.gz · Last modified: 2022/06/06 05:42 by levor