diff options
Diffstat (limited to '')
-rwxr-xr-x | serve.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,2 +1,4 @@ #!/bin/sh -php -S localhost:8000 -d short_open_tag=true index.php +port=8000 +if [ -n "$1" ]; then port=$1; fi +php -S localhost:$port -d short_open_tag=true index.php |