#!/bin/bash # who_is helper script by Kyle Yoksh, K0KN 7/2013, # last revised 7/13/2013 # # This script should be owned by a user - NOT ROOT! PATHTOWHOIS="/home/kyle/who_is" if [ "$1" == "" ] ; then echo "This script is used by the who_is script, and is not intended to be run manually" exit fi sudo $PATHTOWHOIS $1 e