tar/zip命令加密压缩
回到顶部回到顶部
命令
解包
tar zxvf FileName.tar
打包
tar czvf FileName.tar DirName # 打包文件夹
tar czvf FileName.tar test1 test2 # 打包多个文件
加密压缩
tar -czvf - file | openssl des3 -salt -k passw0rd -out /path/to/file.tar.gz
解密解压
openssl des3 -d -k passw0rd -salt -in /path/to/file.tar.gz | tar xvf -
zip压缩
zip -er dist2.zip dist