当前位置: 技术问答>linux和unix
linux 命令 tar -cf example.tar *.jpg 怎样包含子目录中的*.jpg?
来源: 互联网 发布时间:2016-07-25
本文导语: 我试过: tar -cf example *.jpg 只能包含当前目录下的jpg目录,而不能将子目录的jpg一起打包 man tar 只找到一个exclude 难道只能这样: tar cvfz examples.tgz examples --exclude=*.jsp --exclude=*.class --exclude=*.lib......... ...
我试过:
只能包含当前目录下的jpg目录,而不能将子目录的jpg一起打包
man tar 只找到一个exclude
难道只能这样:
tar -cf example *.jpg
只能包含当前目录下的jpg目录,而不能将子目录的jpg一起打包
man tar 只找到一个exclude
难道只能这样:
tar cvfz examples.tgz examples --exclude=*.jsp --exclude=*.class --exclude=*.lib.........
|
find . -name *.jpg cp {} . ;
tar -cf example *.jpg
或者
(cd a;tar -cf example $(find . -name "*.jpg"))
tar -cf example *.jpg
或者
(cd a;tar -cf example $(find . -name "*.jpg"))