postgresql/src/tools/make_diff/cporig
1997-09-08 04:14:01 +00:00

8 lines
111 B
Text
Executable file

:
for FILE
do
if [ ! -f "$FILE.orig" ]
then cp $FILE $FILE.orig
else echo "$FILE.orig exists" 1>&2
fi
done