Created
June 2, 2013 12:45
-
-
Save Kazuma/5693544 to your computer and use it in GitHub Desktop.
gaaru2girl
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
#!/bin/sh | |
# | |
# Description: | |
# Convert to "ガール" from "がある". | |
# | |
# Usage: | |
# gaaru2girl foo.md | |
FILE=$1 | |
while read LINE | |
do | |
echo ${LINE//がある/ガール} | |
done <${FILE} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment