From 85316cfe5503d9be57ba285066b8a2f5b824541f Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Fri, 12 Aug 2005 17:49:07 +0000 Subject: [PATCH] rotate noise --- commands/scripts/rotate.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/commands/scripts/rotate.sh b/commands/scripts/rotate.sh index f5ca9789e..2c466fd53 100755 --- a/commands/scripts/rotate.sh +++ b/commands/scripts/rotate.sh @@ -9,8 +9,7 @@ then echo "Usage: $0 " fi if [ ! -f "$1" ] -then echo "$1 doesn't exist or isn't a file." - exit 1 +then exit 1 fi if [ "$2" -le 0 ] @@ -19,7 +18,7 @@ then echo "Keep at least 1 copy please." fi k="$2" -$RM "$1.$k" || exit 1 +$RM "$1.$k" 2>/dev/null || exit 1 while [ "$k" -ge 2 ] do prev="`expr $k - 1`" $MV $1.$prev.gz $1.$k.gz 2>/dev/null -- 2.44.0