Linux中的find和grep命令对查找到的文件如何处理啊
发布网友
发布时间:2022-02-26 11:23
我来回答
共1个回答
热心网友
时间:2022-02-26 12:53
Linux中find命令查找到文件后通过-exec参数执行shell命令,案例如下:
#-exec command {} \; 将查到的文件执行command操作,{} 和 \;之间有空格
find / -name filename -exec rm -rf {} \;
#查找名字为filename的文件,然后执行rm删除命令
Linux中grep命令查找到文件后通过|(管道符)传递给后面命令执行,案例如下:
ls -l|grep filename|rm -rf
#查找名字为filename的文件,然后执行rm删除命令