“Wie man Reißverschluss und Unzipper entpackt” 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

Wie man Reißverschluss und Unzipper entpackt

Compress:
tar -czvf name-of-archive.tar.gz /path/to/directory-or-file

Uncompress:
tar -xzvf archive.tar.gz

Legend:

-c: Create an archive.
-z: Compress the archive with gzip.
-v: Display progress in the terminal while creating the archive, also known as “verbose” mode. The v is always optional in these commands, but it’s helpful.
-f: Allows you to specify the filename of the archive.
-x: extract
Pleasant Partridge

Ähnliche Antworten wie “Wie man Reißverschluss und Unzipper entpackt”

Fragen ähnlich wie “Wie man Reißverschluss und Unzipper entpackt”

Weitere verwandte Antworten zu “Wie man Reißverschluss und Unzipper entpackt” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen