mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-05 00:00:51 +00:00
29 lines
601 B
Plaintext
29 lines
601 B
Plaintext
Notes for video: http://www.youtube.com/watch?v=au8DlTAHx5o
|
|
|
|
|
|
download location:
|
|
https://github.com/tualatrix/tools/blob/master/SimpleHTTPServerWithUpload.py
|
|
|
|
or
|
|
|
|
https://code.google.com/p/autosetup1/downloads/detail?name=SimpleHTTPServerWithUpload.py
|
|
|
|
|
|
|
|
commands used:
|
|
|
|
# give execute permissions to script
|
|
chmod +x SimpleHTTPServerWithUpload.py
|
|
|
|
# run script manually
|
|
python2.7 SimpleHTTPServerWithUpload.py
|
|
|
|
# edit bashrc with nano
|
|
nano ~/.bashrc
|
|
|
|
Ctrl+o, Enter, Ctrl+x --> save file and exit
|
|
|
|
# functions for ~/.bashrc
|
|
httpserver() { python2.7 ~/tmp/SimpleHTTPServerWithUpload.py ${1:-8000} ;}
|
|
|