10 lines
164 B
Bash
Executable File
10 lines
164 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#Petit serveur WEB hyper simple
|
|
#zf190302.1640
|
|
|
|
#pour python 2.x
|
|
python -m SimpleHTTPServer 8080
|
|
|
|
#pour python 3.3
|
|
#python3 -m http.server 8080
|