Add rename script

This commit is contained in:
rozlette 2019-11-12 22:13:26 -06:00
parent 5808f694c3
commit 3038e5db8e
1 changed files with 13 additions and 0 deletions

13
tools/rename_sym.sh Normal file
View File

@ -0,0 +1,13 @@
#!/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
grep -rl "$1" asm/**/*.asm src/**/*.{c,h} include/**/*.h tables/*.py undef.txt | xargs sed -i "s/\b$1\b/$2/g"