“Teerxtrakt zum Ordner” Code-Antworten

wie man die Tar -Datei entpackt

## Untar files in Current Directory ##
tar -xvf filename.tar.gz

## Untar files in specified Directory ##
tar -xvf filename.tar.gz -C /path_name_for_unzip/

-x : extract
-C : specified directory
-v : Verbosely show the .tar file progress.
-f : filename of archive file
paramjeetdhiman

Extrahieren Sie Tar.gz Ubuntu Terminal

tar -xvf yourfile.tar.gz
Vishal

Untar .TAR -Datei

tar -xvf yourfile.tar
Jittery Jackal

Teerxtrakt zum Pfad

tar -xf archive.tar -C /target/directory
Tiago F2

Teerxtrakt zum Ordner

# compress
tar czvf < archive_name >.tar.gz < path >
# extract
tar xzvf < archive_name >.tar.gz
tar xzvf < archive_name >.tar.gz  -C /home/usera/tmp
VasteMonde

Auszug aus Tar GZ in den Ordner

mkdir foo
tar -xzf bar.tar.gz -C foo
Itchy Iguana

Ähnliche Antworten wie “Teerxtrakt zum Ordner”

Fragen ähnlich wie “Teerxtrakt zum Ordner”

Weitere verwandte Antworten zu “Teerxtrakt zum Ordner” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen