Skip to content

Instantly share code, notes, and snippets.

@nabinno
Created September 15, 2014 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nabinno/17d4847c4163c253d64c to your computer and use it in GitHub Desktop.
Save nabinno/17d4847c4163c253d64c to your computer and use it in GitHub Desktop.
for i in `find . -name "*.html" | xargs grep -l "foo"` ; do
cp $i $i.org`date +%y%m%d` ;
sed 's/foo/bar/g' $i.org`date +%y%m%d` > $i ;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment