tar: add hyphen for flags (#2637)

italian
Jeong Arm 2019-01-29 03:44:44 +09:00 committed by Owen Voke
parent 2bf87e0c5c
commit 4f08cc485d
1 changed files with 8 additions and 8 deletions

View File

@ -5,32 +5,32 @@
- Create an archive from files:
`tar cf {{target.tar}} {{file1 file2 file3}}`
`tar -cf {{target.tar}} {{file1 file2 file3}}`
- Create a gzipped archive:
`tar czf {{target.tar.gz}} {{file1 file2 file3}}`
`tar -czf {{target.tar.gz}} {{file1 file2 file3}}`
- Extract an archive in a target folder:
`tar xf {{source.tar}} -C {{folder}}`
`tar -xf {{source.tar}} -C {{folder}}`
- Extract a gzipped archive in the current directory:
`tar xzf {{source.tar.gz}}`
`tar -xzf {{source.tar.gz}}`
- Extract a bzipped archive in the current directory:
`tar xjf {{source.tar.bz2}}`
`tar -xjf {{source.tar.bz2}}`
- Create a compressed archive, using archive suffix to determine the compression program:
`tar caf {{target.tar.xz}} {{file1 file2 file3}}`
`tar -caf {{target.tar.xz}} {{file1 file2 file3}}`
- List the contents of a tar file:
`tar tvf {{source.tar}}`
`tar -tvf {{source.tar}}`
- Extract files matching a pattern:
`tar xf {{source.tar}} --wildcards {{"*.html"}}`
`tar -xf {{source.tar}} --wildcards {{"*.html"}}`