1. 程式人生 > >linux下打包資料夾(不保留路徑)

linux下打包資料夾(不保留路徑)

問題:
加入要將/home/moma/Downloads/下的test資料夾壓縮成test.tar.gz,放在/home/moma/Documents下
命令:
tar czf /home/moma/Documents/test.tar.gz –directory=/home/moma/Downloads test
結果:
在/home/moma/Documents下解壓tar -zxvf test.tar.gz,解壓出來是test資料夾

假如使用:
tar czf /home/moma/Documents/test.tar.gz -C /home/moma/Downloads/test . (後面有一點)
會把test下的所有檔案打包成test.tar.gz,解壓時不會保留test目錄,直接全是檔案