码迷,mamicode.com
首页 > 系统相关 > 详细

[linux]利用管道 + xargs批量管理文件

时间:2020-06-07 12:49:30      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:rgs   name   命令   class   file   pre   ret   linux中   comm   

管道常用于进程间通信

即上一个进程的stdout作为下一个进程的stdin(直接对接)

在linux中  | 符号即为管道符号,将上一个命令的stdout作为下一个命令的stdin

例:

将当前目录下含有123的文件全部删除(单输入)

ls | grep 123 | xargs rm

将当前目录下含有123的文件全部放入其他文件夹

ls | grep 123 | xargs -t -i mv {} ../file

  将含有关键字的文件打包压缩
find . -type f -name "*.jpg" -print | xargs tar -czvf images.tar.gz

 

 

其他见

https://www.runoob.com/linux/linux-comm-xargs.html

 

[linux]利用管道 + xargs批量管理文件

标签:rgs   name   命令   class   file   pre   ret   linux中   comm   

原文地址:https://www.cnblogs.com/zeolim/p/13060011.html

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