diff --git a/tiny/fqdn b/tiny/fqdn deleted file mode 100755 index cd57f45..0000000 --- a/tiny/fqdn +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -[ $# -ge 2 ] && { echo "Usage: $0 [hostname]" >&2; exit 1; } -if [ $# -eq 1 ] -then - hostname=$1 -else - hostname="`/bin/hostname`" -fi -/usr/bin/nslookup $hostname | /bin/grep Name: | /bin/sed -e 's/.* *//'