diff options
-rw-r--r-- | tar.md | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +# Manipulating tarballs + +## Create (-c) + + tar -cf <new archive name> <files> + # usually tar -cf directory.tar directory/ + +## List contents (-t) + + tar -tf <archive> + +## Extract (-x) + +## Append (-r) |