Skip to content

Instantly share code, notes, and snippets.

@bofm
Last active October 22, 2019 18:23
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 bofm/8c1cedd0d037e5f02c66 to your computer and use it in GitHub Desktop.
Save bofm/8c1cedd0d037e5f02c66 to your computer and use it in GitHub Desktop.
Painless sed
my_sed() {
python -c 'import re,sys; sys.stdout.write(re.sub(sys.argv[1], sys.argv[2], sys.stdin.read()))' "$1" "$2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment