tar打包且排除某個檔案
有tar打包,有時候需要排除某個檔案,本文件提供兩種方法來操作。 |
方法一
[root@system1 testdir]# touch 1 2 3 4 5 6 7 b [root@system1 testdir]# ls 1 2 3 4 5 6 7 b [root@system1 testdir]# tar zcvf a.tar.gz ./* --exclude b #排除b檔案 ./1 ./2 ./3 ./4 ./5 ./6 ./7 [root@system1 testdir]# ls 1 2 3 4 5 6 7 a.tar.gz b [root@system1 testdir]# mv a.tar.gz /tmp/test [root@system1 testdir]# ls 1 2 3 4 5 6 7 b [root@system1 testdir]# cd .. [root@system1 tmp]# cd test [root@system1 test]# ls a.tar.gz [root@system1 test]# tar -xvf a.tar.gz ./1 ./2 ./3 ./4 ./5 ./6 ./7 [root@system1 test]# ls 1 2 3 4 5 6 7 a.tar.gz
方法二
[root@system1 testdir]# ls 1 2 3 4 5 6 7 b [root@system1 testdir]# find ./ -type f ! -name 'b' | xargs tar caf a.tar.gz #排除b檔案 [root@system1 testdir]# ls 1 2 3 4 5 6 7 a.tar.gz b [root@system1 testdir]# mv a.tar.gz /tmp/test [root@system1 testdir]# cd /tmp/test [root@system1 test]# ls a.tar.gz [root@system1 test]# tar -xvf a.tar.gz ./1 ./2 ./3 ./4 ./5 ./6 ./7 [root@system1 test]# ls 1 2 3 4 5 6 7 a.tar.gz
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2637257/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [轉帖]Linux tar壓縮命令 排除某個目錄 && 排除某種格式字尾檔案Linux
- 使用tar打包,如何排除某些資料夾呢?
- WPF 開啟資源管理器且選中某個檔案
- tar命令打包指定目錄及其檔案,而不包括其上級目錄
- Gradle排除依賴模組的某個類Gradle
- linux 壓縮目錄並排除某個目錄Linux
- git的gitignore檔案排除資料夾和檔案Git
- 怎樣阻止ICloud同步某個指定檔案Cloud
- Maven如何只打包專案某個模組及其依賴模組?Maven
- webpack4配置(1)-打包一個js檔案WebJS
- Linux tar 打包 gz bz xz zip 壓縮Linux
- docker新增檔案重新打包Docker
- webpack打包bundle檔案解析Web
- git刪除歷史中的某個大檔案Git
- Linux tar打包命令詳解,附實戰案例!Linux
- linux中常見的打包壓縮命令——tar、jarLinuxJAR
- VUE打包後配置配置檔案修改請求url方法及webpack打包的檔案生成同名檔案方法VueWeb
- maven專案打包後war檔案丟失配置檔案Maven
- 在Linux中,如何進行備份或歸檔檔案(tar 命令)?Linux
- ClickOnce釋出包含某檔案
- 織夢某個頁面對應的模板檔案分析
- pyinstaller打包python成.exe檔案Python
- 使用pyinstaller打包exe檔案教程
- 如果報錯資訊說是無法刪除某個資料夾裡面的某個檔案
- 運用Log和Trace檔案排除Oracle Net問題Oracle
- php如何上傳txt檔案,並且讀取txt檔案PHP
- 從備份片中恢復某個指定得歸檔或者資料檔案
- IDEA如何對比不同分支某個檔案的差異Idea
- python使用pathlib庫 判斷Windows某個路徑下檔案修改日期最晚的檔案PythonWindows
- 使用PyInstaller打包檔案為exe程式
- geoserver將layer打包為shp檔案Server
- Windows 10找不到hosts檔案,且注意lmhosts.sam檔案並不能代表hosts檔案Windows
- Python教程:一篇檔案教你py檔案打包成exePython
- drools執行String規則或執行某個規則檔案
- Linux查詢某個目錄下每個子目錄的所有檔案數量Linux
- Sublime Text 查詢時排除指定的資料夾或檔案
- Flutter 38: 圖解 Android 打包 APK 檔案Flutter圖解AndroidAPK
- Pyinstaller利用spec檔案打包的使用模板