Skip to content

Instantly share code, notes, and snippets.

@bsstoner
Created August 19, 2010 15:21
Show Gist options
  • Save bsstoner/538127 to your computer and use it in GitHub Desktop.
Save bsstoner/538127 to your computer and use it in GitHub Desktop.
cd /path/to/files/
for fl in *.js; do
mv $fl $fl.old
sed -e 's/find_string/replace_string/' $fl.old > $fl
rm -f $fl.old
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment