From 542f00f73598c8bf7455dac349adba0b2b21ef2a Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Mon, 12 Aug 2013 13:18:40 +0200 Subject: [PATCH] printf tries to evaluate "%" in paths, echo does not --- scripts/startdaemons.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/startdaemons.sh b/scripts/startdaemons.sh index 5fb75414d3..7d856e7501 100755 --- a/scripts/startdaemons.sh +++ b/scripts/startdaemons.sh @@ -39,8 +39,8 @@ DAEMONS=`php $DIR/getvaliddaemons.php $ARGSG` for f in $DAEMONS; do - printf "Starting $f..."; + echo "Starting $f..." php $f $ARGSD - printf "DONE.\n" + echo "DONE.\n" done