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:
parent
2bf87e0c5c
commit
4f08cc485d
1 changed files with 8 additions and 8 deletions
|
@ -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"}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue