“polecenie TAR” Kod odpowiedzi

polecenie TAR

# Create (-c) and file (-f) file1 and file2 into "archive.tar"
tar -cf archive.tar file1 file2 
# Extract archived.tar into its content files into current directory
tar -xf archive.tar
# Extract archived.tar into its content files into given directory
tar -xf archive.tar -C given/directory
# List files in archive.tar
tar -tv archive.tar
Armandres

Jak Tar Linux

tar -zcvf file.tar.gz /path/to/dir/
sevenm

polecenie TAR

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

#-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 the archive 
#-t : displays or lists files in archived file 
#-u : archives and adds to an existing archive file 
#-A : Concatenates the archive files  
#-j : filter archive tar file using tbzip 
#-W : Verify a archive file 
#-r : update or add file or directory in already existed .tar file 
Change The Mentality

Odpowiedzi podobne do “polecenie TAR”

Pytania podobne do “polecenie TAR”

Więcej pokrewnych odpowiedzi na “polecenie TAR” w Shell/Bash

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

Przeglądaj inne języki kodu