最佳答案
In Linux, how can I find all *.js
files in a directory recursively? The output should be an absolute path (like /pub/home/user1/folder/jses/file.js
)
this answer worked for me:
find $PWD -name '*.js' > out.txt
It finds all *.js files, output absolute path, writes the results into out.txt.