我正在尝试查找以.jar结尾的所有文件,但它正在拾取以.jar结尾的文件夹,这是我不想要的。
到目前为止我的命令
find . -name ".*jar"
我需要它,因此忽略以.jar
结尾的目录附加请求。
我现在需要在查看时忽略特定文件夹,这可能吗?
感谢。
答案 0 :(得分:3)
只需添加-type f:
find . -name "*.jar" -type f
答案 1 :(得分:2)
其他人已经展示了如何选择以.jar
结尾的文件。作为您的评论“如何忽略特定文件夹”的答案。您使用-prune
作为
find . -name 'specific/folder' -type d -prune -o -type f -name '*.jar'
答案 2 :(得分:0)
这就是你想要的
find . -type f -name "*.jar"
参见手册页:
-type Type
Evaluates to the value True if the Type variable specifies one of the following values:
b
Block special file
c
Character special file
d
Directory
f
Plain file
l
Symbolic link
p
FIFO (a named pipe)
s
Socket