Tape Archive

From 6bit.ch wiki
Revision as of 22:31, 28 November 2022 by Xbl (talk | contribs) (Created page with "= tar = Packs and may compress multiple files a tarball or writes to magnetic tape.</br> == Use (BSD-Style)== <code>tar xf example.tar</code> extract (x) tarball example.tar (f) to .</br> <code>tar cf example.tar</code> create (c) tarball example.tar (f) to .</br> == Useful Flags == <code>t</code> list contents to stdout</br> <code>v</code> verbose output</br> <code>z</code> de-/compress with gzip</br> <code>j</code> de-/compress with bzip</br>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

tar

Packs and may compress multiple files a tarball or writes to magnetic tape.

Use (BSD-Style)

tar xf example.tar extract (x) tarball example.tar (f) to .
tar cf example.tar create (c) tarball example.tar (f) to .

Useful Flags

t list contents to stdout
v verbose output
z de-/compress with gzip
j de-/compress with bzip