12 lines
153 B
Bash
12 lines
153 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# kill "$(cat current.pid)"
|
||
|
|
||
|
# echo "starting python server"
|
||
|
|
||
|
python3 -m http.server
|
||
|
|
||
|
# echo $! > current.pid
|
||
|
|
||
|
# echo "started python server"
|