Skip to content

Instantly share code, notes, and snippets.

@colin-kiegel
Created December 1, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save colin-kiegel/b35d278d6ed5251dfa85 to your computer and use it in GitHub Desktop.
Save colin-kiegel/b35d278d6ed5251dfa85 to your computer and use it in GitHub Desktop.
regex replace multi-line + in multiple files
$FILES="*.rs"
$REGEX="s#(.*)\n(.*)/\2\n\1/"
find . -name "$FILES" | xargs perl -0777 -pi -e '$REGEX'
# flag: -0777 tells perl to read the file as a whole
# replace '-pi' with '-pi.bak' to create backups
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment