ENCRYPTION:
tar -zcvf - stuff|openssl des3 -salt -k secretpassword | dd of=stuff.des3
This will create stuff.des3...don't forget the password you put in place of secretpassword.
dd if=stuff.des3 |openssl des3 -d -k secretpassword|tar zxf -
Ok above there is a "-" at the end... this will extract everything.
阅读(6188) | 评论(1) | 转发(0) |