mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
7 lines
205 B
Plaintext
7 lines
205 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
export LANG=C
|
||
|
find . -name "*.cc" -print -exec sed -e "s/${1}/${2}/g" -i .bak {} \;
|
||
|
find . -name "*.h" -print -exec sed -e "s/${1}/${2}/g" -i .bak {} \;
|
||
|
find . -name "*.bak" -exec rm -f {} \;
|