op-packages/telegrambot/root/usr/lib/telegrambot/plugins/ping.sh
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

9 lines
154 B
Bash
Executable File

#!/bin/sh
DEVICE="$1"
NL="$2"
ping ${DEVICE} -w 1 -q &>/dev/null; [ $? == 0 ] && echo -en "Up" || echo -en "Down"
if [ -z ${NL} ];then
echo -en "\n"
fi