路由器安装使用 S5
原文 https://cokebar.info/archives/664 https://cokebar.info/archives/850 使用作者提供的软件源安装及更新 http://openwrt-dist.sourceforge.net 使用计划任务检测连接状态 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #!/bin/sh LOGTIME=$(date "+%Y-%m-%d %H:%M:%S") wget --spider --quiet --tries=1 --timeout=10 https://www.facebook.com/ if [ "$?" == "0" ]; then echo '['$LOGTIME'] No Problem.' exit...