“Ekstrakt smoły GZ” Kod odpowiedzi

Polecenie Bash do rozpakowania plików TAR.GZ

# Basic syntax:
tar -zxvf file.tar.gz

# Where:
#	- x tells tar to extract the files
#	- v tells the command to list all of the files in the archive
#	- z tells the tar command to uncompress the file (gzip)
#	- f tells tar that you are going to give it a file name to work with
Charles-Alexandre Roy

Jak Untar Tar.Gz

 tar xvzf file.tar.gz
Arjinoodles

Unzip TAR.GZ

tar -xvf file.tar.gz
nic0x801

Wyodrębnij terminal TAR.GZ Ubuntu

tar -xvf yourfile.tar.gz
Vishal

UNTAR TAR.GZ

tar -xzf file.tar.gz
Jittery Jackal

Ekstrakt smoły GZ

# 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

Odpowiedzi podobne do “Ekstrakt smoły GZ”

Pytania podobne do “Ekstrakt smoły GZ”

Więcej pokrewnych odpowiedzi na “Ekstrakt smoły GZ” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu