“Extraia o TAR Linux” Respostas de código

como descompactar o arquivo TAR

## 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

Extract Tar.gz Ubuntu Terminal

tar -xvf yourfile.tar.gz
Vishal

Extraia o TAR Linux

tar -zxvf file_name.tar.gz
Cheerful Cottonmouth

extrato de alcatrão

# 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

Download do Ubuntu e Tar

sudo wget -c "$tarDownloadLink" -O - | sudo tar -xz -C ./where-to-extract
florinrelea

extrato alcatrão

tar -xf archive.tar.bz2 -C /home/linuxize/filesCopy
Important Ibex

Respostas semelhantes a “Extraia o TAR Linux”

Perguntas semelhantes a “Extraia o TAR Linux”

Mais respostas relacionadas para “Extraia o TAR Linux” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código