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