📜  提取 gz 文件 ubuntu - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:12.895000             🧑  作者: Mango

代码示例3
#Untar to the specific dirctory -C qualifier for customized directory
#You must cd into the directory containg the file first
tar -xf archive.tar.gz -C /home/linuxize/files
#Untar specific files from  archive.tar.gz
tar -xf archive.tar.gz file1 file2