Merge pull request #9 from HanEmile/patch-1

added the python3 way to the python server
This commit is contained in:
Bonnie I-Man Ng 2019-06-03 14:18:02 +08:00 committed by GitHub
commit ec0ff9371c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2412,6 +2412,8 @@ file=${1#*.}
##### Python simple HTTP Server ##### Python simple HTTP Server
```bash ```bash
python -m SimpleHTTPServer python -m SimpleHTTPServer
# or when using python3:
python3 -m http.server
``` ```
##### Read user input ##### Read user input