mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-05-06 06:53:00 +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
|