find
目的:查找符合条件的文件
1)在那些目录中查找
2)查找的内容
格式: find 目录名 选项 查找条件
举例:
1)find / work / 001_linux_ basic / dira / -name "test1.txt"
说明:
a)/ work / 001_linux_basic /dira / 指明了查找的路径
b) -name表明以名字来查找文件
c)“test1 .txt ”,就指明查找名为test1 .txt的文件
同理:
find / work / 001_linux_basic / dira/ -name "* .txt"
查找指定目录下面所有以 .txt 结尾的文件,其中 * 是通配符。
find / work / 001_linux_basic -name "dira"