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