如何在Linux中以递归方式查找目录中的所有* .js文件?
在Linux中,如何递归查找目录中的所有*.js
文件? 输出应该是绝对路径(如/pub/home/user1/folder/jses/file.js
)
这个答案适用于我:
find $PWD -name '*.js' > out.txt
它查找所有* .js文件,输出绝对路径,并将结果写入out.txt。
find /abs/path/ -name '*.js'
编辑:正如布莱恩指出的那样,如果你只需要纯文件,而不是目录,链接等,就加上-type f
。
在命令行上使用find
:
find /my/directory -name '*.js'
如果你只是想要列表,那么你应该问这里:http://unix.stackexchange.com
答案是: cd / && find -name *.js
如果你想实现这个,你必须指定语言。
链接地址: http://www.djcxy.com/p/78335.html上一篇: How can I find all *.js file in directory recursively in Linux?
下一篇: List files recursively in Linux CLI with path relative to the current directory