run_server.sh 143 B

1234567891011
  1. #!/bin/bash
  2. ### Internal ###
  3. php_bin=$(which php)
  4. _f=$(readlink -f $0)
  5. _p=$(dirname $_f)
  6. $php_bin -S localhost:4242 -t $_p/htdocs
  7. exit $?