Created
January 28, 2013 04:25
-
-
Save maeharin/4653023 to your computer and use it in GitHub Desktop.
ruby one liner oneliner sub gsub sh
This file contains hidden or 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
# マッチした最初の文字を置換 | |
cat hoge.txt | ruby -pe '$_.sub!("hoge", "fuge")' > fuge.txt | |
# マッチした全ての文字を置換 | |
cat hoge.txt | ruby -pe '$_.gsub!("hoge", "fuge")' > fuge.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment