假設你有要加密的資料夾的名稱為hello, 需要加密壓縮成hello.tar.gz, 則可以如下命令:
tar -czvf - hello | openssl des3 -salt -k 你的密碼 -out hello.tar.gz
需要解壓hello.tar.gz時,輸入如下命令:
openssl des3 -d -k 你的密碼 -salt -in hello.tar.gz | tar xzf -
當不考慮使用密碼時,使用如下命令:
1) hello壓縮為hello.tar.gz
tar -zcvf hello.tar.gz hello
2) hello.tar.gz解壓到當前目錄
tar -zxvf hello.tar.gz
3) hello.tar.gz解壓到當前的project目錄
tar -zxvf hello.tar.gz -c .
/project
linux資料夾壓縮 解壓縮命令
tar 解壓 tar zxvf filename.tar 壓縮 tar czvf filename.tar dirname gz命令 解壓1 gunzip filename.gz 解壓2 gzip d filename.gz 壓縮 gzip filename tar.gz 和 tgz 解壓 tar ...
Linux 資料夾壓縮解壓縮命令總結
linux壓縮檔案的讀取 z compress 程式壓縮的檔案 bz2 bzip2 程式壓縮的檔案 gz gzip 程式壓縮的檔案 tar tar 程式打包的資料,並沒有壓縮過 tar.gz tar 程式打包的檔案,其中並且經過gzip 的壓縮!zip zip 程式壓縮檔案 rar rar 程式壓縮...
POCO ZIP 壓縮與解壓縮資料夾
壓縮目錄到某個目錄下的zip檔案 param desfile 目標檔案,如d test.zip param srcdir 源目錄 要壓縮的資料夾路徑 如d test void cmodesectionmgr zipdirectory char desfile,char srcdir 解壓縮zip檔案...