printf tries to evaluate "%" in paths, echo does not

This commit is contained in:
Mikael Nordfeldth 2013-08-12 13:18:40 +02:00
parent 38ac5a7005
commit 542f00f735
1 changed files with 2 additions and 2 deletions

View File

@ -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