具體的可以在linux環境下 用tar –help檢視詳細說明
格式:tar [option] file
-c :建立乙個壓縮檔案的引數指令(create 的意思);
-x :解開乙個壓縮檔案的引數指令!
-t :檢視 tarfile 裡面的檔案!
特別注意,在引數的下達中, c/x/t 僅能存在乙個!不可同時存在!
因為不可能同時壓縮與解壓縮。
-z :是否同時具有 gzip 的屬性?亦即是否需要用 gzip 壓縮?
-j :是否同時具有 bzip2 的屬性?亦即是否需要用 bzip2 壓縮?
-v :壓縮的過程中顯示檔案!這個常用,但不建議用在背景執行過程!
-f :使用檔名,請留意,在 f 之後要立即接檔名喔!不要再加引數!
例如使用『 tar -zcvfp tfile sfile』就是錯誤的寫法,要寫成
『 tar -zcvpf tfile sfile』才對喔!
-p :使用原檔案的原來屬性(屬性不會依據使用者而變)
-p :可以使用絕對路徑來壓縮!
-n :比後面接的日期(yyyy/mm/dd)還要新的才會被打包進新建的檔案中!
–exclude file:在壓縮的過程中,不要將 file 打包!
linux下tar壓縮使用
具體的可以在linux環境下 用tar help檢視詳細說明 格式 tar option file c create create a new archive x extract extract files from an archive t list list the contents of an...
linux下tar壓縮使用
具體的可以在linux環境下 用tar help檢視詳細說明 格式 tar option file c create create a new archive x extract extract files from an archive t list list the contents of an...
linux命令 tar壓縮使用
tar基本使用方法 tar j z xctv f dirname c dir c 建立打包文件 create t 檢視打包檔案含有那些文件 x 解打包或解壓送的功能,可以在指定目錄下解開 c c,t x 不可同時出現再一串指令列中。v 進行壓縮過程檔案顯示 f filename f 後面要立刻接收要...