4 lines
109 B
Bash
4 lines
109 B
Bash
|
#!/bin/sh
|
||
|
echo 'This script assumes php is in the PATH variable'
|
||
|
php -S localhost:8000 -t public/ server.php
|