#!/bin/sh
for file in `find . -name "*.js"`
do
echo "Compressing $file …"
java -jar min.jar --type js -o $file $file
done


