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