diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-23 17:08:33 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-23 17:08:33 -0700 |
commit | a9bbf29ca6741437f7c27f7a7757b4969d33d279 (patch) | |
tree | 1cd73159cbaab44e801d244fa41c64ee0dea5335 /scripts/startdaemons.sh | |
parent | d98ecc760dd8ed3b4d2366aad1c5a36ddf11c710 (diff) |
use printf instead of echo for startdaemons.sh
Diffstat (limited to 'scripts/startdaemons.sh')
-rwxr-xr-x | scripts/startdaemons.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/startdaemons.sh b/scripts/startdaemons.sh index 7609abec4..a44362b57 100755 --- a/scripts/startdaemons.sh +++ b/scripts/startdaemons.sh @@ -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 |