mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:02:44 +00:00 
			
		
		
		
	 98c0c5e9e6
			
		
	
	
		98c0c5e9e6
		
	
	
	
	
		
			
			The URLs of the form `help://man/<section>/<page>` link to another help page inside the help application. All previous relative page links are replaced by this new form. This doesn't change any behavior but it looks much nicer :^) Note that man doesn't handle these new links, but the previous relative links didn't work either.
		
			
				
	
	
	
	
		
			846 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			846 B
		
	
	
	
	
	
	
	
Name
tar - file archiving utility
Synopsis
$ 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
# 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