#HELP# /linklog <name> [silently] - make a link of channel's log
CMD_linklog()
{
	if [ -z "$JOINFILE" ]; then
		echo "You should join a channel first" 
		return
	fi

	if [ -z "$1" ]; then
		echo "Need a name for the link" 
		return
	fi

	if ! ln $JOINFILE $1; then
		echo "Link failed" 
	else
		if [ -z "$2" ]; then
			notify "$LOGNAME linked the channel log"
		fi
	fi

}
