mirror of
https://github.com/cheat/cheat.git
synced 2025-09-02 18:18:30 +02:00
Package with distutils
Created cheatsheets package to store the default sheets.
This commit is contained in:
14
cheatsheets/tar
Normal file
14
cheatsheets/tar
Normal file
@ -0,0 +1,14 @@
|
||||
To extract an uncompressed archive:
|
||||
tar -xvf /path/to/foo.tar
|
||||
|
||||
To extract a .gz archive:
|
||||
tar -xzvf /path/to/foo.tgz
|
||||
|
||||
To create a .gz archive:
|
||||
tar -czvf /path/to/foo.tgz /path/to/foo/
|
||||
|
||||
To extract a .bz2 archive:
|
||||
tar -xjvf /path/to/foo.tgz
|
||||
|
||||
To create a .bz2 archive:
|
||||
tar -cjvf /path/to/foo.tgz /path/to/foo/
|
Reference in New Issue
Block a user