8 lines
230 B
Bash
8 lines
230 B
Bash
|
|
#!/data/data/com.termux/files/usr/bin/bash
|
||
|
|
# 后台循环收集手机数据
|
||
|
|
|
||
|
|
while true; do
|
||
|
|
bash ~/.openclaw/workspace/scripts/collect-phone-data.sh >> ~/.openclaw/workspace/data/collect.log 2>&1
|
||
|
|
sleep 300 # 5分钟
|
||
|
|
done
|