如何在Linux中递归地在目录中找到所有* .js文件?[关闭]


75

在Linux中,如何*.js递归查找目录中的所有文件?输出应为绝对路径(如/pub/home/user1/folder/jses/file.js

这个答案对我有用:

find $PWD -name '*.js' > out.txt

它查找所有* .js文件,输出绝对路径,并将结果写入out.txt。

Answers:


129

find /abs/path/ -name '*.js'

编辑: 正如Brian指出的,-type f如果只需要纯文件,而不是目录,链接等,则添加。


11
由于他要文件,因此您还应该添加-type f一个以“ .js”结尾的目录。
布莱恩·怀特


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.