Merge pull request #33 from albertojacini/fix_readme

Marked comments in the example cheatsheet
This commit is contained in:
Chris Lane 2013-08-24 13:47:06 -07:00
commit f28a42b030
1 changed files with 5 additions and 5 deletions

View File

@ -22,19 +22,19 @@ cheat tar
You will be presented with a cheatsheet resembling:
```text
To extract an uncompressed archive:
# To extract an uncompressed archive:
tar -xvf /path/to/foo.tar
To extract a .gz archive:
# To extract a .gz archive:
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/
To extract a .bz2 archive:
# To extract a .bz2 archive:
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/
```