Skip to content

Instantly share code, notes, and snippets.

@nsahoo
Created January 3, 2017 05:03
Show Gist options
  • Save nsahoo/e28ed974bb4756554b821bcae3e0bd3c to your computer and use it in GitHub Desktop.
Save nsahoo/e28ed974bb4756554b821bcae3e0bd3c to your computer and use it in GitHub Desktop.
perl script to replace a particular string throughout the file
perl -pi -e "s/5000000/5000/g" *.py
and back again
perl -pi -e "s/5000/5000000/g" *.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment