11 lines
131 B
Plaintext
11 lines
131 B
Plaintext
|
#!/bin/bash
|
||
|
export SITE=$1
|
||
|
|
||
|
timeout 2 bash -c "</dev/tcp/${SITE}/1356" > /dev/null
|
||
|
if [ $? -ne "0" ]
|
||
|
then
|
||
|
exit 1
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|