1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 09:02:08 +02:00

tar: add hyphen for flags (#2637)

This commit is contained in:
Jeong Arm 2019-01-29 03:44:44 +09:00 committed by Owen Voke
parent 2bf87e0c5c
commit 4f08cc485d

View file

@ -5,32 +5,32 @@
- Create an archive from files: - Create an archive from files:
`tar cf {{target.tar}} {{file1 file2 file3}}` `tar -cf {{target.tar}} {{file1 file2 file3}}`
- Create a gzipped archive: - 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: - 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: - 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: - 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: - 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: - List the contents of a tar file:
`tar tvf {{source.tar}}` `tar -tvf {{source.tar}}`
- Extract files matching a pattern: - Extract files matching a pattern:
`tar xf {{source.tar}} --wildcards {{"*.html"}}` `tar -xf {{source.tar}} --wildcards {{"*.html"}}`