mirror of https://github.com/cheat/cheat.git
Merge pull request #33 from albertojacini/fix_readme
Marked comments in the example cheatsheet
This commit is contained in:
commit
f28a42b030
10
README.md
10
README.md
|
@ -22,19 +22,19 @@ cheat tar
|
||||||
You will be presented with a cheatsheet resembling:
|
You will be presented with a cheatsheet resembling:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
To extract an uncompressed archive:
|
# To extract an uncompressed archive:
|
||||||
tar -xvf /path/to/foo.tar
|
tar -xvf /path/to/foo.tar
|
||||||
|
|
||||||
To extract a .gz archive:
|
# To extract a .gz archive:
|
||||||
tar -xzvf /path/to/foo.tgz
|
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 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/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue