15 lines
289 B
Bash
Raw Normal View History

2013-08-23 23:25:16 +02:00
#!/bin/bash
DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
php -S localhost:8081 -t "$DIR/.."&
echo "Waiting until PHP webserver is ready on port 8081"
while [[ -z `curl -s 'http://localhost:8081' ` ]]
do
echo -n "."
sleep 2s
done
echo "PHP webserver is up"