aboutsummaryrefslogtreecommitdiff
path: root/tests/tcpsource.sh
blob: f3527a6569870aea4661d78c2c1a8bdfe5ed36ce (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

P=$1
PORT=$((P))
if [ ${PORT} -lt 1 ]; then
  echo "usage: $0 <port>" 1>&2
  exit 1
fi

yes abcdefghijklmnopqrstuvwxyz | nc localhost ${PORT} > /dev/null