mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-12-15 17:38:57 +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
|