Last active
April 5, 2017 04:24
-
-
Save lgarron/de988df10e57f1714fd640df3b55dab6 to your computer and use it in GitHub Desktop.
Replace using `ag` and `sed` in fish
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
# brew install gsed | |
for file in (ag -i -l "PageInfoPopupView" .) | |
echo $file | |
gsed --in-place="" "s/PageInfoPopupView/PageInfoBubbleView/g" $file | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment