From e0c0d4b38cde20e2300e86b69414dd9851b47456 Mon Sep 17 00:00:00 2001 From: neodarz Date: Thu, 5 Sep 2019 07:05:07 +0200 Subject: ooo --- dotfiles/cheat/tar | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 dotfiles/cheat/tar (limited to 'dotfiles/cheat/tar') diff --git a/dotfiles/cheat/tar b/dotfiles/cheat/tar new file mode 100644 index 0000000..41173b2 --- /dev/null +++ b/dotfiles/cheat/tar @@ -0,0 +1,34 @@ +# To extract an uncompressed archive: +tar -xvf /path/to/foo.tar + +# To create an uncompressed archive: +tar -cvf /path/to/foo.tar /path/to/foo/ + +# To extract a .gz archive: +tar -xzvf /path/to/foo.tgz + +# To create a .gz archive: +tar -czvf /path/to/foo.tgz /path/to/foo/ + +# To list the content of an .gz archive: +tar -ztvf /path/to/foo.tgz + +# To extract a .bz2 archive: +tar -xjvf /path/to/foo.tgz + +# To create a .bz2 archive: +tar -cjvf /path/to/foo.tgz /path/to/foo/ + +# To extract a .tar in specified Directory: +tar -xvf /path/to/foo.tar -C /path/to/destination/ + +# To list the content of an .bz2 archive: +tar -jtvf /path/to/foo.tgz + +# To create a .gz archive and exclude all jpg,gif,... from the tgz +tar czvf /path/to/foo.tgz --exclude=\*.{jpg,gif,png,wmv,flv,tar.gz,zip} /path/to/foo/ + +# To use parallel (multi-threaded) implementation of compression algorithms: +tar -z ... -> tar -Ipigz ... +tar -j ... -> tar -Ipbzip2 ... +tar -J ... -> tar -Ipixz ... -- cgit v1.2.1