|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
当你经过一段时间的学习后就应该扩充自己的知识,多学习linux命令,但是不要在初学阶段就系统的学习linux命令。
在Linux下,经常使用tar对文件或目次回档紧缩,偶然候必要疏忽某些文件或目次,怎样做呢?
本来,tar命令有个长参数--exclude能够用来指定扫除失落的文件目次。- [root@mos178usr]#lsmotixbinbin.1153887679bin.20080407zhy_something_wrongcfgcfg.1153887679cfg.20070425.tar.gzlogmotix0405.tar.gzrun[root@mos178usr]#tarzcfmotix.20130121a.tar.gzmotix--excludelog--exclude"*.gz"[root@mos178usr]#tarztvfmotix.20130121a.tar.gz...[root@mos178usr]#
复制代码 关头是要总结出要疏忽文件的形式来。- [root@sunriseroot]#tarzcfwork181.20130121a.tar.gzwork181--excludelog--exclude"*20*"--excludebin[root@sunriseroot]#
复制代码 与tar--exclude相干的参数申明以下:- --excludePATTERNexcludefilesbaseduponPATTERN-X,--exclude-fromFILEexcludefileslistedinFILE--wildcardsusewildcardswith--exclude--wildcards-match-slashwildcardsmatchslashes(/)with--exclude--no-anchoredmatchanysubsequenceofthename’scomponentswith--exclude--no-ignore-caseusecase-sensitivematchingwith--exclude--no-wildcardsdon’tusewildcardswith--exclude--no-wildcards-match-slashwildcardsdonotmatchslashes(/)with--exclude
复制代码 要多动手,不要怕什么搞坏了怎么办,你不搞坏,不去动手,就永远不会有收获,既然你在linux中是自由的,那就发挥自己的权利; |
|