mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-16 08:58:35 +01:00
bef2b22ad6
* 'master' of https://github.com/kragniz/cheat: Don't split cheatpath for no reason Remove duplicates from the list of cheatsheets. Change indent level from 2 spaces to 4. Change most of the headers to h1's. Add a non-root section to the installation guide. Don't require the package to be available. Remove old install script Replace support for user's .cheat directories Update readme with setup.py Package with distutils
17 lines
384 B
Text
17 lines
384 B
Text
To extract an uncompressed archive:
|
|
tar -xvf /path/to/foo.tar
|
|
|
|
To create an uncompressed archive:
|
|
tar -cvf /path/to/foo.tar /path/to/foo/
|
|
|
|
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/
|