Skip to content

Instantly share code, notes, and snippets.

@otofune
Last active February 17, 2017 03:39
Show Gist options
  • Save otofune/e7b11fcbaaa50668ec8376a9f46b2cdb to your computer and use it in GitHub Desktop.
Save otofune/e7b11fcbaaa50668ec8376a9f46b2cdb to your computer and use it in GitHub Desktop.
find . -type f | xargs sed -i -e "s/This API is Auth Required/This API requires Auth/g" -e "s/This API is Web Only/This API can only be called from Web/g" -e "s/This API is Web and Admin User Only/This API can only be called from Admin User at Web/g" -e "s/This API is No Parameters/This API has no parameters/g"
find . -type f | xargs perl -pi -e 's/\n\n+/\n\n/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment