Skip to content

Instantly share code, notes, and snippets.

@mouson
Created January 8, 2015 02:45
Show Gist options
  • Save mouson/adc221ef0f6d8a6bc3d6 to your computer and use it in GitHub Desktop.
Save mouson/adc221ef0f6d8a6bc3d6 to your computer and use it in GitHub Desktop.
將目錄中(包含子目錄)所有檔案中的「HTTP_GET_VARS」取代為「_GET」
grep -rl "HTTP_GET_VARS" * | xargs -i sed -i "s/HTTP_GET_VARS/_GET/g" {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment