码迷,mamicode.com
首页 > 其他好文 > 详细

find,xargs,tar有选择打包

时间:2014-09-25 20:13:47      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:http   ar   sp   on   c   r   bs   as   tt   

[1]

find / -name "*.sh"|xargs tar -rf sh.tgz
[2]
find / -name "*.sh" -print > list
tar -T list -cvjf sh.tar.bz2

[3]

find . -name ‘*.sh‘ | xargs tar cvjf sh.tar.bz2
find . -name ‘*.sh‘ -print0 | xargs -0 tar cvjf sh.tar.bz2

参考:

http://brightconan.com/?p=47

 

find,xargs,tar有选择打包

标签:http   ar   sp   on   c   r   bs   as   tt   

原文地址:http://www.cnblogs.com/taosim/p/3993312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!