Linux tar加密压缩命令
加密压缩
tar -czvf - file | openssl des3 -salt -k password -out /path/file.tar.gz
解密解压
openssl des3 -d -k password -salt -in /path/file.tar.gz | tar xzf -
来源:https://blog.csdn.net/ivansuntech/article/details/81032484
加密压缩
tar -czvf - file | openssl des3 -salt -k password -out /path/file.tar.gz
解密解压
openssl des3 -d -k password -salt -in /path/file.tar.gz | tar xzf -
来源:https://blog.csdn.net/ivansuntech/article/details/81032484