8 lines
114 B
Bash
8 lines
114 B
Bash
#!/bin/sh
|
|
while true; do
|
|
clear;
|
|
python3 -m pagermaid;
|
|
echo '正在重新启动...';
|
|
sleep 1;
|
|
done
|