You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
482 B

#!/bin/bash
arr=("$@")
for i in "${arr[@]}";
do
echo "$i"
done
isopenport()
{
arr=("$@")
for i in "${arr[@]}";
do
nc -z 127.0.0.1 $i &> /dev/null
result1=$?
if [ "$result1" != 0 ]; then
echo port $i is free
else
echo port $i is used
fi
done
}
ports=(800 801 81 82 83 84 85 86 88 89 1883 27017 8080 3000 6379)
isopenport "${ports[@]}"