mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 08:58:28 +01:00
Merge pull request #92 from Mic92/patch-1
tar: List content of gz/bz2 archives
This commit is contained in:
commit
305584196d
1 changed files with 6 additions and 0 deletions
|
@ -10,8 +10,14 @@ tar -xzvf /path/to/foo.tgz
|
||||||
# To create a .gz archive:
|
# To create a .gz archive:
|
||||||
tar -czvf /path/to/foo.tgz /path/to/foo/
|
tar -czvf /path/to/foo.tgz /path/to/foo/
|
||||||
|
|
||||||
|
# To list the content of an .gz archive:
|
||||||
|
tar -ztvf /path/to/foo.tgz
|
||||||
|
|
||||||
# To extract a .bz2 archive:
|
# To extract a .bz2 archive:
|
||||||
tar -xjvf /path/to/foo.tgz
|
tar -xjvf /path/to/foo.tgz
|
||||||
|
|
||||||
# To create a .bz2 archive:
|
# To create a .bz2 archive:
|
||||||
tar -cjvf /path/to/foo.tgz /path/to/foo/
|
tar -cjvf /path/to/foo.tgz /path/to/foo/
|
||||||
|
|
||||||
|
# To list the content of an .bz2 archive:
|
||||||
|
tar -jtvf /path/to/foo.tgz
|
||||||
|
|
Loading…
Reference in a new issue