Engine23

How to get all the javascript files in a folder – linux

find . -name "*.js" | xargs ls -goh | cut -b 1,13-128 You can do the same thing for css: find . -name "*.css" | xargs ls -goh | cut -b 1,13-128

Share: