Created
November 30, 2016 08:57
-
-
Save robbestad/9dea3f4e55a67fccb73a022acc81c485 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PORT=$(( 8000 + ( RANDOM % 1000 ) + 1 )) | |
echo http://localhost:$PORT | |
python -m SimpleHTTPServer $PORT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment