From ac53aee292099af8d028f9a1911e193e07ebf9fa Mon Sep 17 00:00:00 2001 From: George Danchev Date: Sun, 26 Jun 2011 14:38:09 +0000 Subject: [PATCH] start logs with 'log.*' to disambiguate a bit --- releng/run_all | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/releng/run_all b/releng/run_all index 061aa0ea..155f2cc8 100755 --- a/releng/run_all +++ b/releng/run_all @@ -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 }