mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-23 03:10:01 +08:00
7 lines
127 B
Bash
Executable File
7 lines
127 B
Bash
Executable File
#! /bin/bash
|
|
python3 -m http.server 8888 &
|
|
P1=$!
|
|
trap 'kill 0' SIGINT; P1
|
|
python3 -m webbrowser http://localhost:8888
|
|
wait $P1
|