-
查找文件操作(
find
指令):find [PATH] [option] [action]
-
find ./ -type f 测试文件*
查找文件当前目录(./
)下类型为普通文件(-type f
),且前缀名为(测试文件
)的所有文件
-
find
查找文件类型参数(-type
)包括以下几种:
d -- directory 目录文件
f -- normal file 普通文件
p -- named pipe 管道
s -- socket 套接字
l -- symbolic link 符号连接
b -- block special file 特殊块文件,这种类型的文件提供对设备(磁盘)带缓冲的访问,每次访问以固定长度的单位进行
c -- character special file 字符特殊文件,这种类型的文件提供对设备不带缓冲的访问每次长度可变。系统中的所有设备要么是字符特殊文件,要么是块特殊文件
-
网友评论