瀏覽代碼

Base: Update the tar manpage

Tim Schumacher 3 年之前
父節點
當前提交
4487e515f7
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      Base/usr/share/man/man1/tar.md

+ 4 - 3
Base/usr/share/man/man1/tar.md

@@ -5,7 +5,7 @@ tar - file archiving utility
 ## Synopsis
 ## Synopsis
 
 
 ```**sh
 ```**sh
-$ tar [--create] [--extract] [--list] [--verbose] [--gzip] [--file FILE] [PATHS...]
+$ tar [--create] [--extract] [--list] [--verbose] [--gzip] [--directory DIRECTORY] [--file FILE] [PATHS...]
 ```
 ```
 
 
 ## Description
 ## Description
@@ -21,8 +21,9 @@ Files may also be compressed and decompressed using GNU Zip (GZIP) compression.
 * `-x`, `--extract`: Extract archive
 * `-x`, `--extract`: Extract archive
 * `-t`, `--list`: List contents
 * `-t`, `--list`: List contents
 * `-v`, `--verbose`: Print paths
 * `-v`, `--verbose`: Print paths
-* `-z`, `--gzip`: compress or uncompress file using gzip
-* `-f`, `--file`: Archive file
+* `-z`, `--gzip`: Compress or decompress file using gzip
+* `-C DIRECTORY`, `--directory DIRECTORY`: Directory to extract to/create from
+* `-f FILE`, `--file FILE`: Archive file
 
 
 ## Examples
 ## Examples