mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-30 22:11:26 +08:00
9 lines
154 B
Bash
Executable File
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 |