use printf instead of echo for startdaemons.sh

This commit is contained in:
Evan Prodromou 2009-06-23 17:08:33 -07:00
parent d98ecc760d
commit a9bbf29ca6

View File

@ -35,7 +35,8 @@ DAEMONS=`php $DIR/getvaliddaemons.php $ARGS`
for f in $DAEMONS; do
echo -n "Starting $f...";
printf "Starting $f...";
php $DIR/$f $ARGS
echo "DONE."
printf "DONE.\n"
done