13 أسطر
146 B
Bash
13 أسطر
146 B
Bash
#!/bin/sh
|
|
|
|
while true
|
|
do
|
|
python monitor.py
|
|
|
|
cp data.json dashboard/data.json
|
|
|
|
sleep 60
|
|
done &
|
|
|
|
cd dashboard
|
|
python -m http.server 8000 |