Skip to content

Instantly share code, notes, and snippets.

@nathanmac
Created August 27, 2015 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathanmac/a34d98ba5c6ee3fe0a3a to your computer and use it in GitHub Desktop.
Save nathanmac/a34d98ba5c6ee3fe0a3a to your computer and use it in GitHub Desktop.
Serve Function
function serve()
{
if [ -z $1 ]; then port=9999 else port=$1 fi
echo "----------------- Starting Server -----------------";
php -S localhost:$port;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment