mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-13 14:42:15 -05:00
18 lines
340 B
Bash
Executable File
18 lines
340 B
Bash
Executable File
#!/bin/bash
|
|
# $1: phrase to find
|
|
# $2: phrase to replace $1
|
|
if [ "$1" = "" -o "$2" = "" ]; then
|
|
echo "Usage: replace.sh [PHRASE TO FIND] [PHRASE TO REPLACE PHRASE TO FIND]"
|
|
exit 1
|
|
fi
|
|
|
|
set -e
|
|
|
|
if [ "$(uname -s)" == "Darwin" ]; then
|
|
SED="$(which gsed)"
|
|
else
|
|
SED="$(which sed)"
|
|
fi
|
|
|
|
${SED} -i 's/\<'"$1"'\>/'"$2"'/g' $(git grep -Ilwr "$1")
|