Linux学习笔记4_基本文件操作命令复习2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux学习笔记4_基本文件操作命令复习2相关的知识,希望对你有一定的参考价值。

find命令(5星级)


find  /data  -type  -f  -name  "test.txt"                                  //找到某类型某名字文件

find  /data  -type  -f  -name  "test.txt"  -exec  rm  {}  \;        //找到后执行某命令,此处为删除内容

find  /data  -type  -f  -name  "*.txt"                                      //*号代表所有,会分行显示

find  /data  -type  -f  -name  "*.txt"  |xargs                          //|号为管道(符号前的命令结果为符号后命令的输入)

find  /data  -type  -f  -name  "*.txt"  |xargs  rm  -f               //将find的多行显示内容排成一行供单行生效命令使用

以上是关于Linux学习笔记4_基本文件操作命令复习2的主要内容,如果未能解决你的问题,请参考以下文章

Linux学习笔记6_基本命令复习1(alias unalias sourse)

Linux学习笔记7_基本命令复习2(seq sed awk)

Linux学习笔记10_基本命令复习6(mv,history,LANG)

Linux学习笔记11_系统操作优化相关命令复习

Linux学习笔记-基本操作1

Linux学习笔记8_三剑客命令的sed命令复习(替换)