Created
June 16, 2010 18:28
-
-
Save jwalsh/441077 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for JS in $(find . -name "*.js") | |
do | |
echo Processing $JS | |
echo "alert(\"Starting $JS\");" > $JS.new | |
cat $JS >> $JS.new | |
mv $JS.new $JS | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
May be used to block execution of JS during MSIE review.