tar压缩解压

# 压缩folder文件夹
tar cvf name.tar folder/
# 解压到当前目录
tar xvf name.tar
# 解压到指定目录
tar xvf name.tar -C dest_folder/

你可能感兴趣的:(tar压缩解压)