Zuletzt aktiv 1704386775

Änderung f10268ad7343ea9babcd1a35c8d92c544718c8c8

extract_tar_gz.sh Orginalformat
1# extract specific file(s) from tar.gz
2tar -zxvf <tar filename> <file you want to extract>
3
4# -x: instructs tar to extract files.
5# -f: specifies filename / tarball name.
6# -v: Verbose (show progress while extracting files).
7# -z: filter archive through gzip, use to decompress .gz files.
8# -t: List the contents of an archive
9# https://unix.stackexchange.com/questions/61461/how-to-extract-specific-files-from-tar-gz