start logs with 'log.*' to disambiguate a bit

This commit is contained in:
George Danchev 2011-06-26 14:38:09 +00:00
parent d0015e78b9
commit ac53aee292
1 changed files with 3 additions and 3 deletions

View File

@ -3,8 +3,8 @@
set -e
SELF=`echo $0|sed -e 's/\.\///'`
CLOG1=$0.1.log
CLOG2=$0.2.log
CLOG1=log.$SELF.1
CLOG2=log.$SELF.2
> ${CLOG1}
> ${CLOG2}
@ -25,7 +25,7 @@ for s in `ls | grep -v ${SELF}`; do
set -e
fi
done
printf "\n$0: inspect ${CLOG1} and ${CLOG2}\n\n"
printf "\n\n\t$0: *** inspect ${CLOG1} and ${CLOG2} ***\n\n"
exit 0
}