Move pages back into a "pages" folder

This commit is contained in:
rprieto
2014-03-04 23:28:29 +11:00
parent 0a4c0f0a37
commit f00bf64426
99 changed files with 0 additions and 0 deletions

20
pages/common/tar.md Normal file
View File

@@ -0,0 +1,20 @@
# tar
> Archiving utility
> Optional compression with gzip / bzip
- create an archive from files
`tar cf {{target.tar}} {{file1 file2 file3}}`
- create a gzipped archive
`tar czf {{target.tar.gz}} {{file1 file2 file3}}`
- extract an archive in a target folder
`tar xf {{source.tar}} -C {{folder}}`
- extract a gzipped archive in the current directory
`tar xzf {{source.tar.gz}}`