在Linux中,如何以递归方式查找目录中的所有*.js
个文件?输出应该是绝对路径(如/pub/home/user1/folder/jses/file.js
)
这个答案对我有用:
find $PWD -name '*.js' > out.txt
它找到所有* .js文件,输出绝对路径,将结果写入out.txt。
答案 0 :(得分:105)
find /abs/path/ -name '*.js'
编辑:正如Brian指出的那样,如果您只想要普通文件而不是目录,链接等,请添加-type f
。
答案 1 :(得分:13)
在命令行上使用find
:
find /my/directory -name '*.js'
答案 2 :(得分:3)