mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
7 lines
98 B
Plaintext
Executable File
7 lines
98 B
Plaintext
Executable File
|
|
for filename in `find ./ -name '*.[ch]'`
|
|
do
|
|
sed -i -e "s/ORIGINAL/REPLACEMENT/g" $filename
|
|
done
|
|
|