Linux——find-type命令
find -type命令查某⼀类型的⽂件,后⾯跟着不同的字母表⽰不同的⽂件类型查询manual如下:
⽂件类型
b block (buffered) special
d character (unbuffered) special
c directory(⽬录)
p named pipe (FIFO)(命名管道)
l
symbolic link; this is never true if the -L option or the -follow option is in effect, unless the symbolic link i
s broken. If you want to search for symbolic links when -L is in effect, use -xtype. (软连接;如果-L或者-follow选项⽣效,这个字母就不能⽤,除⾮软连接断开了。如
find查命令的使用
果你想在-L⽣效的时候,搜索软连接,使⽤-xtype选项)
f regular file(普通⽂件)
s socket
D door (Solaris)
To search for more than one type at once, you can supply the combined list of type letters separated by a comma `,’ (GNU extension).
翻译:如果单次搜索超过⼀种类型,那么你能使⽤“,”符号隔开类型字母。(GNU扩展)
下⾯举个例⼦:
find -type f
表⽰搜索的⽂件类型为普通⽂件。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。