Answers for "untar file in linux"

8

extract tar.gz ubuntu terminal

tar -xvf yourfile.tar.gz
Posted by: Guest on June-13-2020
1

untar file in linux

$ tar -xvf <tar_archive> <filename>
Posted by: Guest on September-07-2021
1

unarchive tar acrhive

tar -xvf file.tar etc/resolv.conf
tar -xzvf file.tar.gz etc/resolv.conf
tar -xjvf file.tar.bz2 etc/resolv.conf

#Extract files into a specific folder
tar -xf archive.tar.gz -C /home/linuxize/files
Posted by: Guest on June-29-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language