Skip to content

Instantly share code, notes, and snippets.

@xbalaji
Last active August 24, 2018 22:44
Show Gist options
  • Save xbalaji/23702880820cae5585c7161c6eb38cee to your computer and use it in GitHub Desktop.
Save xbalaji/23702880820cae5585c7161c6eb38cee to your computer and use it in GitHub Desktop.
python simple webserver - non blocking one liner
# 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