#HELP# /finger <user> - Get infos about a user
CMD_finger()
{
	if [ -z "$1" ]; then
		echo "Finger who?"
		return
	fi

	'finger' $1
}

