Last active
August 24, 2018 22:44
-
-
Save xbalaji/23702880820cae5585c7161c6eb38cee to your computer and use it in GitHub Desktop.
python simple webserver - non blocking one liner
This file contains hidden or 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
# from: https://recipes.readthedocs.io/en/latest/pyserv.html | |
screen -dmS pyserv python -m SimpleHTTPServer 80 | |
# simple screen cheat sheet | |
# | |
# To list detached screen sessions | |
# screen -ls | |
# | |
# To join a screen session - partial name or pid from above | |
# screen -r pyserv | |
# | |
# To quit from an attached session | |
# <ctrl+A> followed by 'D' (detach) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment