mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:12:44 +00:00 
			
		
		
		
	 8ff942b5a4
			
		
	
	
		8ff942b5a4
		
	
	
	
	
		
			
			I can't write these manpages ad-hoc, and in most cases I don't want to remove the link because it is justified. The hope is that with this FIXME in place, there is more motivation to write these manpages for someone who knows enough about them. Or at least we will introduce fewer dead links in the future, making Help more useful.
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			836 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			836 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ## Name
 | |
| 
 | |
| tar - file archiving utility
 | |
| 
 | |
| ## Synopsis
 | |
| 
 | |
| ```**sh
 | |
| $ tar [--create] [--extract] [--list] [--verbose] [--gzip] [--file FILE] [PATHS...]
 | |
| ```
 | |
| 
 | |
| ## Description
 | |
| 
 | |
| tar is an archiving utility designed to store multiple files in an archive file
 | |
| (tarball).
 | |
| 
 | |
| Files may also be compressed and decompressed using GNU Zip (GZIP) compression.
 | |
| 
 | |
| ## Options
 | |
| 
 | |
| * `-c`, `--create`: Create archive
 | |
| * `-x`, `--extract`: Extract archive
 | |
| * `-t`, `--list`: List contents
 | |
| * `-v`, `--verbose`: Print paths
 | |
| * `-z`, `--gzip`: compress or uncompress file using gzip
 | |
| * `-f`, `--file`: Archive file
 | |
| 
 | |
| ## Examples
 | |
| 
 | |
| ```sh
 | |
| # List the contents of archive.tar
 | |
| $ tar -t -f archive.tar
 | |
| 
 | |
| # Extract the contents from archive.tar.gz
 | |
| $ tar -x -z -f archive.tar.gz
 | |
| 
 | |
| # Extract the contents from archive.tar
 | |
| $ tar -x -f archive.tar
 | |
| ```
 | |
| 
 | |
| ## See also
 | |
| 
 | |
| * [`unzip`(1)](unzip.md)
 |