#HELP# /linklog [silently] - make a link of channel's log CMD_linklog() { if [ -z "$JOINFILE" ]; then echo "You should join a channel first" >&2 return fi if [ -z "$1" ]; then echo "Need a name for the link" >&2 return fi if ! ln $JOINFILE $1; then echo "Link failed" >&2 else if [ -z "$2" ]; then notify "$LOGNAME linked the channel log" fi fi }