From 044df01c083644add2d7854b3322b03720b0916b Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Mon, 6 Feb 2006 00:25:30 +0100 Subject: [PATCH] Corrected singular case --- ccollect.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ccollect.sh b/ccollect.sh index d884594..e598372 100755 --- a/ccollect.sh +++ b/ccollect.sh @@ -311,7 +311,8 @@ while [ "$i" -lt "$no_shares" ]; do # the created directories are named $INTERVALL.$DA count=$(ls -d "$c_dest/${INTERVALL}."?* 2>/dev/null | wc -l) - echo "Currently $count backup(s) exist, total keeping $c_intervall backup(s)." + echo -n "Currently $count backup(s) exist(s)," + echo " total keeping $c_intervall backup(s)." if [ "$count" -ge "$c_intervall" ]; then substract=$(echo $c_intervall - 1 | bc)