tar命令中--exclude引數使用詳解
tar命令中--exclude引數使用詳解
(2013-08-20 09:21:44)
tar命令中--exclude引數使用詳解
2008-04-07 11:15:33| 分類: linux |字號 訂閱
tar --null -P -czf /tmp/archive.tar.gz --files-from=files.lst
files.lst是要打包的檔案列表
tar 中--exclude的用法
tar czvf oracle.tar.gz oracle --exclude oracle/oradata --exclude oracle/admin/shvoip --exclude oracle/doc
如何使用tar進行排除一個目錄的備份
你打包/home這個目錄,/home/123/是你不想打包的目錄。
tar cvf my.bak.tar /home --exclude /home/123
tar exclude
Published at February 20, 2008 in C/C++.
搞了半天tar 的exclude 要放在 最後尾端才行:
tar jcvf WLANIntercept_20080220.tar.bz WLANIntercept/ –exclude=Debug
需要備份/home/software/test下內容,
不包含裡面的目錄005
這樣可以備份
#cd /home/software/test
# tar -cvzf test.tar.gz . --exclude=005
./
./001
./002
./003
./004
./008
./test.tar.gz
如果回到上一層目錄,
cd ../就是在/home/software
# tar -cvzf test.tar.gz --exclude=test/005/ test
test/
test/001
test/002
test/003
test/004
test/005/
test/005/006
test/005/007
test/008
test/test.tar.gz
exclude卻沒有作用????
如果按照最上面的成功的方法,如果解壓,就直接把test下的內容解到了
當前目錄。。。。
第二總方法為什麼有問題???
請指點。。。。。。
求助tar備份中exclude的問題
暈,已解決
# tar -cvzf test.tar.gz --exclude=test/005/ test
# tar -cvzf test.tar.gz --exclude=test/005 test
這兩個效果是絕對不一樣的。
2008-04-07 11:15:33| 分類: linux |字號 訂閱
tar --null -P -czf /tmp/archive.tar.gz --files-from=files.lst
files.lst是要打包的檔案列表
tar 中--exclude的用法
tar czvf oracle.tar.gz oracle --exclude oracle/oradata --exclude oracle/admin/shvoip --exclude oracle/doc
如何使用tar進行排除一個目錄的備份
你打包/home這個目錄,/home/123/是你不想打包的目錄。
tar cvf my.bak.tar /home --exclude /home/123
tar exclude
Published at February 20, 2008 in C/C++.
搞了半天tar 的exclude 要放在 最後尾端才行:
tar jcvf WLANIntercept_20080220.tar.bz WLANIntercept/ –exclude=Debug
需要備份/home/software/test下內容,
不包含裡面的目錄005
這樣可以備份
#cd /home/software/test
# tar -cvzf test.tar.gz . --exclude=005
./
./001
./002
./003
./004
./008
./test.tar.gz
如果回到上一層目錄,
cd ../就是在/home/software
# tar -cvzf test.tar.gz --exclude=test/005/ test
test/
test/001
test/002
test/003
test/004
test/005/
test/005/006
test/005/007
test/008
test/test.tar.gz
exclude卻沒有作用????
如果按照最上面的成功的方法,如果解壓,就直接把test下的內容解到了
當前目錄。。。。
第二總方法為什麼有問題???
請指點。。。。。。
求助tar備份中exclude的問題
暈,已解決
# tar -cvzf test.tar.gz --exclude=test/005/ test
# tar -cvzf test.tar.gz --exclude=test/005 test
這兩個效果是絕對不一樣的。
相關文章
- tar命令引數詳解
- TAR命令引數詳解(轉)
- mac 的tar命令--exclude和linux的tar命令--exclude的區別MacLinux
- tar 命令詳解
- Linux 中 RPM 命令引數使用詳解Linux
- tar命令詳解--轉
- 壓縮命令tar詳解
- Linux tar命令詳解Linux
- tar/gzip/unzip命令詳解
- lsblk命令引數詳解
- tar命令的詳細解釋
- find 命令的引數詳解
- Linux 中 RPM 命令引數使用詳解 [其它Linux/unix]Linux
- tar 命令一個比較有用的引數
- Linux ls命令引數詳解Linux
- Linux tar命令exclude選項排除指定檔案或目錄Linux
- linux tar(tape archive) 命令詳解(ZT)LinuxHive
- nginx命令:啟動,停止及命令引數詳解Nginx
- 命令列引數解析函式getopt_long() 使用詳解命令列函式
- linux chmod命令詳細使用引數Linux
- Linux系統命令Top/free的使用及引數詳解Linux
- linux expr命令引數及用法詳解Linux
- JQuery中$.ajax()方法引數詳解jQuery
- Linux tar打包命令詳解,附實戰案例!Linux
- Linux下的tar壓縮解壓縮命令詳解Linux
- ab壓力測試命令及引數詳解
- FFmpeg命令影片音訊轉碼引數詳解音訊
- plt.figure()引數使用詳解
- 使用tar命令從磁帶中解壓資料夾的問題
- ajax 引數詳解
- DockerFile引數詳解Docker
- dd引數詳解
- Mysqldump引數詳解MySql
- vmstat 引數詳解
- 以太坊客戶端Geth命令用法-引數詳解客戶端
- MongoDB啟動命令mongod引數的詳細解釋MongoDB
- 每天一個 Linux 命令(22):find 命令的引數詳解Linux
- ORACLE中Cursor_sharing引數詳解Oracle