Skip to content

Instantly share code, notes, and snippets.

@jwalsh
Created June 16, 2010 18:28
Show Gist options
  • Save jwalsh/441077 to your computer and use it in GitHub Desktop.
Save jwalsh/441077 to your computer and use it in GitHub Desktop.
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
@jwalsh
Copy link
Author

jwalsh commented Jun 16, 2010

May be used to block execution of JS during MSIE review.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment