Created
November 15, 2013 21:50
-
-
Save Artistan/7492255 to your computer and use it in GitHub Desktop.
find and replace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f 'findthistext' | xargs sed -i -e 's/findthistext/replacewiththistext/g'; | |
# replace members/upload.php with upload.php | |
f 'members\/upload\.php' | xargs sed -i -e 's/members\/upload\.php/upload\.php/g'; | |
# using my .bash_profile | |
# prevents changes to .svn and .git files!!! | |
f 'findthistext' | xargs sed -i -e 's/findthistext/replacewiththistext/g'; | |
# replace members/upload.php with upload.php | |
f 'members\/upload\.php' | xargs sed -i -e 's/members\/upload\.php/upload\.php/g'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment