mirror of
https://github.com/farisawan-2000/kirby64.git
synced 2024-11-27 15:10:32 +00:00
16 lines
197 B
Bash
Executable File
16 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
|
|
shopt -s globstar
|
|
|
|
if [ "$#" -ne "2" ];
|
|
then
|
|
echo "usage: $0 old_name new_name"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
|
|
#echo "Replace $1 with $2?"
|
|
#read
|
|
git grep -rl "$1" | xargs sed -i "s/\b$1\b/$2/g"
|