mirror of
https://github.com/schoebel/mars
synced 2024-12-16 11:45:10 +00:00
15 lines
244 B
Bash
Executable File
15 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
|
|
old=backup.$$
|
|
files="*.h *.c"
|
|
#files="mars_buf.h mars_buf.c"
|
|
|
|
mkdir -p $old || exit $?
|
|
cp -a $files $old || exit $?
|
|
|
|
for i in $files; do
|
|
sed "$1" < $i > $i.tmp || exit $?
|
|
cmp $i $i.tmp || mv $i.tmp $i
|
|
rm -f $i.tmp
|
|
done
|