#!/bin/sh
#
# whats-1.0.3 by Andrew Costa, a guy who likes
# to know what is hanging around on his system.
#
# seagull@osiris.isys.ca
#
PROG=`which $1`
if [ $? != 0 ]; then
echo "It's not."
exit
fi
FileType=`file $PROG`
ls -laF $PROG
echo $FileType
if [ "`echo $FileType | grep text`" = "" ]; then
ldd $PROG
size $PROG
fi
