6 lines
82 B
Bash
6 lines
82 B
Bash
|
#!/bin/bash
|
||
|
python3 -m http.server 8000 &
|
||
|
sleep 1
|
||
|
open http://localhost:8000
|
||
|
wait
|