How to exclude a directory in find . command
Asked 07 September, 2021
Viewed 2.5K times
  • 59
Votes

I'm trying to run a find command for all JavaScript files, but how do I exclude a specific directory?

Here is the find code we're using.

for file in $(find . -name '*.js')
do 
  java -jar config/yuicompressor-2.4.2.jar --type js $file -o $file
done

30 Answer