blob: 1fe7f75cbcdc1081e3ec77c4285005a9bd986c7f (
plain)
1
2
3
4
5
6
7
|
NCAT_PATH=../../../..
if [ -a "$NCAT_PATH/ncat" ]
then
for addr in `cat iplist`; do $NCAT_PATH/ncat --disable-eof-exit $addr 80 < get.request; done;
else
echo "Ncat is not buit. Please build Ncat before you use these scripts";
fi
|