#!/bin/bash find_tunctl() { for path in `which tunctl` /{usr/,usr/local/}{bin,sbin}/tunctl; do if [ -x "$path" ]; then return 0 fi done return 1 } if ! find_tunctl; then cat >&2 <