blob: 7b8f75feb43c797ea087a85da2a48af3400e70aa [file] [log] [blame]
#!/bin/sh
# src/tools/make_diff/cporig
for FILE
do
if [ ! -f "$FILE.orig" ]
then cp $FILE $FILE.orig
else echo "$FILE.orig exists" 1>&2
fi
done