如何在Linux中以recursion方式查找所有* .js文件?
在Linux中,如何以recursion方式查找目录中的所有*.js
文件? 输出应该是一个绝对path(如/pub/home/user1/folder/jses/file.js
)
这个答案为我工作:
find $PWD -name '*.js' > out.txt
它find所有* .js文件,输出绝对path,将结果写入out.txt。
find /abs/path/ -name '*.js'
编辑:正如布赖恩指出的那样,如果你只需要普通文件,而不是目录,链接等,就加上-type f
。
在命令行上使用find
:
find /my/directory -name '*.js'
如果你只是想要列表,那么你应该问这里: http : //unix.stackexchange.com
答案是: cd / && find -name *.js
如果你想实现这个,你必须指定语言。