#/bin/sh

if [ ! $1 ]; then
echo Please specify with whom do you want to test the feelings, eg: test root
exit
fi;

for i in `cat feelings`
do
$i $1
done

