Marked comments in the example cheatsheet

This commit is contained in:
Alberto Jacini 2013-08-24 17:10:16 +02:00
parent c460bfdb31
commit 1ad972a5cf
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/
```