Skip to content

Instantly share code, notes, and snippets.

@Kazuma
Created June 2, 2013 12:45
Show Gist options
  • Save Kazuma/5693544 to your computer and use it in GitHub Desktop.
Save Kazuma/5693544 to your computer and use it in GitHub Desktop.
gaaru2girl
#!/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