summaryrefslogtreecommitdiffstats
path: root/util/bin/untilport
blob: b815cb19c722c3a934ebbe1db3b54a9030509fc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -euf

usage() {
  echo 'untiport $target $port'
  echo 'Sleeps until the destinated port is reachable.'
  echo 'ex: untilport google.de 80 && echo 'google is now reachable''
}

if [ $# -ne 2 ]; then
  usage
else
  until nc -z "$@"; do sleep 1; done
fi