# inspect
tar -tvf /path/to/foo.tar
# unpack
tar -xvf /path/to/foo.tar
# pack
tar -cvf /path/to/foo.tar /path/to/foo/
-z
-- gzip (.tar.gz
,.tgz
)-j
-- bzip2 (.tar.bz2
,.tbz2
)
# pack from parent folder
tar -cf /path/to/foo.tar -C /path/to/parent target
# pack from folder
tar -cf /path/to/foo.tar -C /path/to/target .
tar -cf /path/to/foo.tar --exclude=\*.{jpg,png} /path/to/foo/
tar -xf /path/to/foo.tar -C /path/to/target/
tar -xf /path/to/foo.tar --strip 1