1
0
mirror of https://github.com/byReqz/conn.git synced 2025-06-15 20:47:48 +00:00

adding multi-ip mode

This commit is contained in:
Nils
2021-01-15 15:00:32 +00:00
committed by GitHub
parent d4823429a2
commit 749dad9b4b

11
conn.sh
View File

@ -2,11 +2,18 @@
if [[ -z "$1" ]]; then
echo "Usage: conn [ip] (y/n)"
exit
elif [[ "$2" != p ]]; then
echo "multi-ip mode detected, only checking availability"
echo ""
echo "-------------------Availability----------------------"
fping "$@"
echo "-----------------------------------------------------"
exit
elif [[ -n "$1" ]]; then
echo "checking connection status for $1"
echo "-----------------------------------------"
echo "-------------------Availability----------------------"
fping $1
echo "-----------------------------------------"
echo "-----------------------------------------------------"
fi
if [[ -z "$2" ]]; then
echo "portscan? (y/n)"