Last active
April 5, 2017 04:24
Revisions
-
lgarron revised this gist
Apr 5, 2017 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ # brew install gsed for file in (ag -i -l "PageInfoPopupView" .) echo $file gsed --in-place="" "s/PageInfoPopupView/PageInfoBubbleView/g" $file end -
lgarron created this gist
Apr 5, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ for file in (ag -i -l "PageInfoPopupView" .) echo $file sed --in-place="" "s/PageInfoPopupView/PageInfoBubbleView/g" $file end