Shell-find . -type f -name "*.jpg" -print | xargs tar -czvf images.tar.gz

查找所有的 jpg 文件,并且压缩它们:

find . -type f -name "*.jpg" -print | xargs tar -czvf images.tar.gz

猜你喜欢

转载自www.cnblogs.com/music378/p/9333861.html
tar