summaryrefslogtreecommitdiff
path: root/irc
diff options
context:
space:
mode:
authorAde Lovett <ade@FreeBSD.org>2000-01-22 04:56:41 +0000
committerAde Lovett <ade@FreeBSD.org>2000-01-22 04:56:41 +0000
commit5987e6e576cc9ec96d04ebacb38de1c7465c8750 (patch)
treea4d2be3ee9d982403d85a26d3e2f122c6fdec0ef /irc
parentUpdate to 1.8.5 (diff)
Major code update to 1.0c15
Optional GNOME/GTK user interface New MAINTAINER (mail to previous maintainer bounces with unknown user) PR: 16085 (with changes) Submitted by: Carl Johan Madestrand <calle.madestrand@norrgarden.se> Reviewed by: steve (in part)
Notes
Notes: svn path=/head/; revision=24904
Diffstat (limited to 'irc')
-rw-r--r--irc/bitchx/Makefile77
-rw-r--r--irc/bitchx/distinfo2
-rw-r--r--irc/bitchx/pkg-comment2
-rw-r--r--irc/bitchx/pkg-descr10
-rw-r--r--irc/bitchx/pkg-plist905
5 files changed, 967 insertions, 29 deletions
diff --git a/irc/bitchx/Makefile b/irc/bitchx/Makefile
index e031dc0764d8..32742fba6ae9 100644
--- a/irc/bitchx/Makefile
+++ b/irc/bitchx/Makefile
@@ -1,36 +1,75 @@
# New ports collection makefile for: BitchX ircII client
-# Version required: 75p3
+# Version required: 1.0c15
# Date created: 26 Jan 1998
# Whom: griffin
#
# $FreeBSD$
#
-DISTNAME= ircii-pana-75p3
-PKGNAME= bitchx-75p3
+DISTNAME= BitchX-1.0c15
CATEGORIES= irc
-MASTER_SITES= ftp://ftp.bitchx.org/pub/BitchX/source/ \
- ftp://ftp.buk.net/pub/software/bitchx/source/
+MASTER_SITES= ftp://ftp.bitchx.com/pub/ \
+ ftp://bitchx.dimension6.com/pub/
-MAINTAINER= griffin@blackhole.iceworld.org
+MAINTAINER= calle.madestrand@norrgarden.se
-GNU_CONFIGURE= yes
+.if defined(USE_GNOME)
+LIB_DEPENDS= gnome.3:${PORTSDIR}/x11/gnomelibs
+.endif
+GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
+GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
WRKSRC= ${WRKDIR}/BitchX
+GNU_CONFIGURE= yes
+USE_GMAKE= yes
+.if defined(USE_GNOME)
+CONFIGURE_ARGS+= --with-plugins --with-gtk --enable-sound
+.else
+CONFIGURE_ARGS+= --with-plugins --without-gtk
+.endif
+CONFIGURE_ARGS+= --exec-prefix="${PREFIX}/share" \
+ --bindir="${PREFIX}/bin" \
+ --datadir="${PREFIX}/share" \
+ --libdir="${PREFIX}/share"
+
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ GLIB_CONFIG="${GLIB_CONFIG}" \
+ GTK_CONFIG="${GTK_CONFIG}"
-MAN1= BitchX.1
-MANCOMPRESSED= yes
+MAKE_ENV+= INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
+ INSTALL_DATA="${INSTALL_DATA}"
+.if !defined(USE_GNOME)
+pre-extract:
+ @${ECHO} "You can add hooks for GNOME by defining USE_GNOME"
+.endif
+
+# Horrible hack to remove bogus CR's at the end of this file
post-patch:
- @${SED} -e s,__PREFIX__,$(PREFIX), $(WRKSRC)/include/config.h > $(WRKSRC)/include/config.h.new
- @${MV} $(WRKSRC)/include/config.h.new $(WRKSRC)/include/config.h
-
-do-install:
- ${MKDIR} ${PREFIX}/lib/bx
- ${INSTALL_PROGRAM} ${WRKSRC}/source/BitchX ${PREFIX}/bin
- ${INSTALL_PROGRAM} ${WRKSRC}/source/scr-bx ${PREFIX}/bin
- ${INSTALL_PROGRAM} ${WRKSRC}/source/wserv ${PREFIX}/bin
- ${INSTALL_DATA} ${WRKSRC}/BitchX.help ${PREFIX}/lib/bx
- ${INSTALL_MAN} ${WRKSRC}/BitchX.1.gz ${PREFIX}/man/man1
+ @${PERL} -pi -e 's,\r$$,,' ${WRKSRC}/script/menu.bx
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${PREFIX}/share/bx/help
+ ${MKDIR} ${PREFIX}/share/doc/bitchx
+ ${TAR} --directory ${WRKSRC}/bitchx-docs -cf - . --exclude CVS | \
+ ${TAR} --directory ${PREFIX}/share/bx/help -xf -
+ ${INSTALL_DATA} ${WRKSRC}/doc/bxfaq.html ${PREFIX}/share/doc/bitchx
+.endif
+.if defined(USE_GNOME)
+ @${ECHO} bin/gtkBitchX >> ${TMPPLIST}
+ @${ECHO} bin/gtkBitchX-1.0c15 >> ${TMPPLIST}
+ @${ECHO} share/bx/plugins/nicklist.so >> ${TMPPLIST}
+.else
+ @${ECHO} bin/BitchX >> ${TMPPLIST}
+ @${ECHO} bin/BitchX-1.0c15 >> ${TMPPLIST}
+ @${ECHO} bin/scr-bx >> ${TMPPLIST}
+ @${ECHO} share/bx/wserv >> ${TMPPLIST}
+.endif
+ @${ECHO} @dirrm share/bx/help >> ${TMPPLIST}
+ @${ECHO} @dirrm share/bx/plugins >> ${TMPPLIST}
+ @${ECHO} @dirrm share/bx/script >> ${TMPPLIST}
+ @${ECHO} @dirrm share/bx/translation >> ${TMPPLIST}
+ @${ECHO} @dirrm share/bx >> ${TMPPLIST}
.include <bsd.port.mk>
diff --git a/irc/bitchx/distinfo b/irc/bitchx/distinfo
index 936f6f0a8f32..34892a41ea0c 100644
--- a/irc/bitchx/distinfo
+++ b/irc/bitchx/distinfo
@@ -1 +1 @@
-MD5 (ircii-pana-75p3.tar.gz) = c8365cc2b7aa187c7857cbf0483fd254
+MD5 (BitchX-1.0c15.tar.gz) = 5048fd8d6b64302df5b52511e0acc19a
diff --git a/irc/bitchx/pkg-comment b/irc/bitchx/pkg-comment
index 3ee2e8467fd1..0bd284ce387f 100644
--- a/irc/bitchx/pkg-comment
+++ b/irc/bitchx/pkg-comment
@@ -1 +1 @@
-An alternative ircII color client
+An alternative ircII color client with optional GTK/GNOME support
diff --git a/irc/bitchx/pkg-descr b/irc/bitchx/pkg-descr
index 55296ec57e32..b15fbbe94f33 100644
--- a/irc/bitchx/pkg-descr
+++ b/irc/bitchx/pkg-descr
@@ -1,3 +1,7 @@
-BitchX is an enhanced ircII client. It includes many built-in features
-normally found only in scripts. Including, full ANSI color, userlists,
-flood protection, and built CDCC (XDCC) file offering.
+BitchX is an IRC (Internet Relay Chat) client by Colten Edwards aka
+panasync@efnet, it is based on it's predecessors ircII and EPIC.
+BitchX was originally started as a script by Trench and HappyCrappy
+for the popular UNIX IRC client ircII. Around Christmas of 1994 the
+script was patched directly into the client by panasync.
+
+WWW: http://www.bitchx.com
diff --git a/irc/bitchx/pkg-plist b/irc/bitchx/pkg-plist
index f5184f174b07..7f5b77fb697b 100644
--- a/irc/bitchx/pkg-plist
+++ b/irc/bitchx/pkg-plist
@@ -1,5 +1,900 @@
-bin/BitchX
-bin/scr-bx
-bin/wserv
-lib/bx/BitchX.help
-@dirrm lib/bx
+share/bx/BitchX.help
+share/bx/BitchX.ircnames
+share/bx/BitchX.quit
+share/bx/BitchX.reasons
+share/bx/help/1_General/1_General
+share/bx/help/1_General/4op
+share/bx/help/1_General/about
+share/bx/help/1_General/addforward
+share/bx/help/1_General/addidle
+share/bx/help/1_General/adduser
+share/bx/help/1_General/away
+share/bx/help/1_General/bye
+share/bx/help/1_General/channel
+share/bx/help/1_General/ctcp/action
+share/bx/help/1_General/ctcp/bdcc
+share/bx/help/1_General/ctcp/cdcc
+share/bx/help/1_General/ctcp/clientinfo
+share/bx/help/1_General/ctcp/ctcp
+share/bx/help/1_General/ctcp/echo
+share/bx/help/1_General/ctcp/finger
+share/bx/help/1_General/ctcp/ident
+share/bx/help/1_General/ctcp/invite
+share/bx/help/1_General/ctcp/op
+share/bx/help/1_General/ctcp/ops
+share/bx/help/1_General/ctcp/ping
+share/bx/help/1_General/ctcp/time
+share/bx/help/1_General/ctcp/unban
+share/bx/help/1_General/ctcp/uptime
+share/bx/help/1_General/ctcp/userinfo
+share/bx/help/1_General/ctcp/utc
+share/bx/help/1_General/ctcp/version
+share/bx/help/1_General/ctcp/whoami
+share/bx/help/1_General/ctcp/xdcc
+share/bx/help/1_General/dcc/chat
+share/bx/help/1_General/dcc/close
+share/bx/help/1_General/dcc/closeall
+share/bx/help/1_General/dcc/dcc
+share/bx/help/1_General/dcc/get
+share/bx/help/1_General/dcc/list
+share/bx/help/1_General/dcc/raw
+share/bx/help/1_General/dcc/rename
+share/bx/help/1_General/dcc/resume
+share/bx/help/1_General/dcc/send
+share/bx/help/1_General/describe
+share/bx/help/1_General/disconnect
+share/bx/help/1_General/help
+share/bx/help/1_General/ignore
+share/bx/help/1_General/invite
+share/bx/help/1_General/join
+share/bx/help/1_General/kick
+share/bx/help/1_General/lastlog
+share/bx/help/1_General/me
+share/bx/help/1_General/mode
+share/bx/help/1_General/msg
+share/bx/help/1_General/nick
+share/bx/help/1_General/noforward
+share/bx/help/1_General/notice
+share/bx/help/1_General/notify
+share/bx/help/1_General/nslookup
+share/bx/help/1_General/part
+share/bx/help/1_General/ping
+share/bx/help/1_General/query
+share/bx/help/1_General/quit
+share/bx/help/1_General/reconnect
+share/bx/help/1_General/say
+share/bx/help/1_General/server
+share/bx/help/1_General/silence
+share/bx/help/1_General/spam
+share/bx/help/1_General/topic
+share/bx/help/1_General/unforward
+share/bx/help/1_General/unidle
+share/bx/help/1_General/unuser
+share/bx/help/1_General/url
+share/bx/help/2_Queries/2_Queries
+share/bx/help/2_Queries/admin
+share/bx/help/2_Queries/flush
+share/bx/help/2_Queries/info
+share/bx/help/2_Queries/ison
+share/bx/help/2_Queries/links
+share/bx/help/2_Queries/list
+share/bx/help/2_Queries/lusers
+share/bx/help/2_Queries/map
+share/bx/help/2_Queries/motd
+share/bx/help/2_Queries/names
+share/bx/help/2_Queries/stats
+share/bx/help/2_Queries/time
+share/bx/help/2_Queries/trace
+share/bx/help/2_Queries/userhost
+share/bx/help/2_Queries/userip
+share/bx/help/2_Queries/users
+share/bx/help/2_Queries/version
+share/bx/help/2_Queries/who
+share/bx/help/2_Queries/whois
+share/bx/help/2_Queries/whowas
+share/bx/help/2_Queries/wii
+share/bx/help/2_Queries/wilc
+share/bx/help/2_Queries/wilcr
+share/bx/help/2_Queries/wilm
+share/bx/help/2_Queries/wiln
+share/bx/help/2_Queries/ww
+share/bx/help/3_Operators/3_Operators
+share/bx/help/3_Operators/connect
+share/bx/help/3_Operators/deoper
+share/bx/help/3_Operators/die
+share/bx/help/3_Operators/dline
+share/bx/help/3_Operators/hash
+share/bx/help/3_Operators/helpop
+share/bx/help/3_Operators/helpserv
+share/bx/help/3_Operators/kill
+share/bx/help/3_Operators/kline
+share/bx/help/3_Operators/locop
+share/bx/help/3_Operators/oper
+share/bx/help/3_Operators/rehash
+share/bx/help/3_Operators/restart
+share/bx/help/3_Operators/rping
+share/bx/help/3_Operators/sping
+share/bx/help/3_Operators/squit
+share/bx/help/3_Operators/swallop
+share/bx/help/3_Operators/tkline
+share/bx/help/3_Operators/unkline
+share/bx/help/3_Operators/uping
+share/bx/help/3_Operators/wallops
+share/bx/help/4_Misc/4_Misc
+share/bx/help/4_Misc/abort
+share/bx/help/4_Misc/beep
+share/bx/help/4_Misc/bind/backspace
+share/bx/help/4_Misc/bind/backward_character
+share/bx/help/4_Misc/bind/backward_history
+share/bx/help/4_Misc/bind/backward_word
+share/bx/help/4_Misc/bind/beginning_of_line
+share/bx/help/4_Misc/bind/bind
+share/bx/help/4_Misc/bind/blink
+share/bx/help/4_Misc/bind/bold
+share/bx/help/4_Misc/bind/clear_screen
+share/bx/help/4_Misc/bind/command_completion
+share/bx/help/4_Misc/bind/delete_character
+share/bx/help/4_Misc/bind/delete_next_word
+share/bx/help/4_Misc/bind/delete_previous_word
+share/bx/help/4_Misc/bind/delete_to_previous_space
+share/bx/help/4_Misc/bind/end_of_line
+share/bx/help/4_Misc/bind/enter_digraph
+share/bx/help/4_Misc/bind/enter_menu
+share/bx/help/4_Misc/bind/erase_line
+share/bx/help/4_Misc/bind/erase_to_beg_of_line
+share/bx/help/4_Misc/bind/erase_to_end_of_line
+share/bx/help/4_Misc/bind/forward_character
+share/bx/help/4_Misc/bind/forward_history
+share/bx/help/4_Misc/bind/forward_word
+share/bx/help/4_Misc/bind/highlight_off
+share/bx/help/4_Misc/bind/meta1_character
+share/bx/help/4_Misc/bind/meta4_character
+share/bx/help/4_Misc/bind/next_window
+share/bx/help/4_Misc/bind/nothing
+share/bx/help/4_Misc/bind/parse_command
+share/bx/help/4_Misc/bind/paste_to_input
+share/bx/help/4_Misc/bind/previous_window
+share/bx/help/4_Misc/bind/quit_irc
+share/bx/help/4_Misc/bind/quote_character
+share/bx/help/4_Misc/bind/refresh_inputline
+share/bx/help/4_Misc/bind/refresh_screen
+share/bx/help/4_Misc/bind/reverse
+share/bx/help/4_Misc/bind/scroll_backward
+share/bx/help/4_Misc/bind/scroll_end
+share/bx/help/4_Misc/bind/scroll_forward
+share/bx/help/4_Misc/bind/scroll_start
+share/bx/help/4_Misc/bind/self_insert
+share/bx/help/4_Misc/bind/send_line
+share/bx/help/4_Misc/bind/shove_to_history
+share/bx/help/4_Misc/bind/stop_irc
+share/bx/help/4_Misc/bind/swap_last_window
+share/bx/help/4_Misc/bind/swap_next_window
+share/bx/help/4_Misc/bind/swap_previous_window
+share/bx/help/4_Misc/bind/switch_channels
+share/bx/help/4_Misc/bind/toggle_insert_mode
+share/bx/help/4_Misc/bind/toggle_stop_screen
+share/bx/help/4_Misc/bind/transpose_characters
+share/bx/help/4_Misc/bind/type_text
+share/bx/help/4_Misc/bind/unclear_screen
+share/bx/help/4_Misc/bind/underline
+share/bx/help/4_Misc/bind/unstop_all_windows
+share/bx/help/4_Misc/bind/yank_from_cutbuffer
+share/bx/help/4_Misc/cd
+share/bx/help/4_Misc/clear
+share/bx/help/4_Misc/digraph
+share/bx/help/4_Misc/encrypt
+share/bx/help/4_Misc/history
+share/bx/help/4_Misc/hostname
+share/bx/help/4_Misc/ircuser
+share/bx/help/4_Misc/mesg
+share/bx/help/4_Misc/mlist
+share/bx/help/4_Misc/mload
+share/bx/help/4_Misc/note
+share/bx/help/4_Misc/rbind
+share/bx/help/4_Misc/realname
+share/bx/help/4_Misc/set/always_split_biggest
+share/bx/help/4_Misc/set/auto_new_nick
+share/bx/help/4_Misc/set/auto_reconnect_delay
+share/bx/help/4_Misc/set/auto_rejoin
+share/bx/help/4_Misc/set/auto_rejoin_delay
+share/bx/help/4_Misc/set/auto_unmark_away
+share/bx/help/4_Misc/set/auto_whowas
+share/bx/help/4_Misc/set/banner
+share/bx/help/4_Misc/set/banner_expand
+share/bx/help/4_Misc/set/beep
+share/bx/help/4_Misc/set/beep_max
+share/bx/help/4_Misc/set/beep_on_msg
+share/bx/help/4_Misc/set/beep_when_away
+share/bx/help/4_Misc/set/blink_video
+share/bx/help/4_Misc/set/bold_video
+share/bx/help/4_Misc/set/channel_name_width
+share/bx/help/4_Misc/set/client_information
+share/bx/help/4_Misc/set/clock
+share/bx/help/4_Misc/set/clock_24hour
+share/bx/help/4_Misc/set/clock_alarm
+share/bx/help/4_Misc/set/clock_format
+share/bx/help/4_Misc/set/cmdchars
+share/bx/help/4_Misc/set/color
+share/bx/help/4_Misc/set/command_mode
+share/bx/help/4_Misc/set/comment_hack
+share/bx/help/4_Misc/set/connect_timeout
+share/bx/help/4_Misc/set/continued_line
+share/bx/help/4_Misc/set/cpu_saver_after
+share/bx/help/4_Misc/set/cpu_saver_every
+share/bx/help/4_Misc/set/current_window_level
+share/bx/help/4_Misc/set/dcc_auto_timeout
+share/bx/help/4_Misc/set/dcc_long_pathnames
+share/bx/help/4_Misc/set/dcc_sliding_window
+share/bx/help/4_Misc/set/dcc_store_path
+share/bx/help/4_Misc/set/debug
+share/bx/help/4_Misc/set/dispatch_unknown_command
+share/bx/help/4_Misc/set/display
+share/bx/help/4_Misc/set/display_ansi
+share/bx/help/4_Misc/set/do_notify_immediately
+share/bx/help/4_Misc/set/eight_bit_characters
+share/bx/help/4_Misc/set/encrypt_program
+share/bx/help/4_Misc/set/floating_point_math
+share/bx/help/4_Misc/set/flood_after
+share/bx/help/4_Misc/set/flood_rate
+share/bx/help/4_Misc/set/flood_users
+share/bx/help/4_Misc/set/flood_warning
+share/bx/help/4_Misc/set/full_status_line
+share/bx/help/4_Misc/set/help_pager
+share/bx/help/4_Misc/set/help_path
+share/bx/help/4_Misc/set/help_prompt
+share/bx/help/4_Misc/set/help_window
+share/bx/help/4_Misc/set/hide_private_channels
+share/bx/help/4_Misc/set/high_bit_escape
+share/bx/help/4_Misc/set/highlight_char
+share/bx/help/4_Misc/set/history
+share/bx/help/4_Misc/set/history_file
+share/bx/help/4_Misc/set/hold_mode
+share/bx/help/4_Misc/set/indent
+share/bx/help/4_Misc/set/input_aliases
+share/bx/help/4_Misc/set/input_prompt
+share/bx/help/4_Misc/set/insert_mode
+share/bx/help/4_Misc/set/inverse_video
+share/bx/help/4_Misc/set/lastlog
+share/bx/help/4_Misc/set/lastlog_level
+share/bx/help/4_Misc/set/load_path
+share/bx/help/4_Misc/set/log
+share/bx/help/4_Misc/set/logfile
+share/bx/help/4_Misc/set/mail
+share/bx/help/4_Misc/set/max_recursions
+share/bx/help/4_Misc/set/menu
+share/bx/help/4_Misc/set/mirc_broken_dcc_resume
+share/bx/help/4_Misc/set/mode_stripper
+share/bx/help/4_Misc/set/nd_space_max
+share/bx/help/4_Misc/set/no_control_log
+share/bx/help/4_Misc/set/no_ctcp_flood
+share/bx/help/4_Misc/set/no_fail_disconnect
+share/bx/help/4_Misc/set/notify_handler
+share/bx/help/4_Misc/set/notify_interval
+share/bx/help/4_Misc/set/notify_level
+share/bx/help/4_Misc/set/notify_on_termination
+share/bx/help/4_Misc/set/notify_userhost_automatic
+share/bx/help/4_Misc/set/novice
+share/bx/help/4_Misc/set/num_of_whowas
+share/bx/help/4_Misc/set/pad_char
+share/bx/help/4_Misc/set/quit_message
+share/bx/help/4_Misc/set/realname
+share/bx/help/4_Misc/set/reverse_status_line
+share/bx/help/4_Misc/set/reverse_video
+share/bx/help/4_Misc/set/screen_options
+share/bx/help/4_Misc/set/scroll
+share/bx/help/4_Misc/set/scroll_lines
+share/bx/help/4_Misc/set/scrollback
+share/bx/help/4_Misc/set/scrollback_ratio
+share/bx/help/4_Misc/set/security
+share/bx/help/4_Misc/set/send_ignore_msg
+share/bx/help/4_Misc/set/set
+share/bx/help/4_Misc/set/shell
+share/bx/help/4_Misc/set/shell_flags
+share/bx/help/4_Misc/set/shell_limit
+share/bx/help/4_Misc/set/show_away_once
+share/bx/help/4_Misc/set/show_channel_names
+share/bx/help/4_Misc/set/show_end_of_msgs
+share/bx/help/4_Misc/set/show_numerics
+share/bx/help/4_Misc/set/show_status_all
+share/bx/help/4_Misc/set/show_who_hopcount
+share/bx/help/4_Misc/set/status_away
+share/bx/help/4_Misc/set/status_channel
+share/bx/help/4_Misc/set/status_chanop
+share/bx/help/4_Misc/set/status_clock
+share/bx/help/4_Misc/set/status_does_expandos
+share/bx/help/4_Misc/set/status_format
+share/bx/help/4_Misc/set/status_hold
+share/bx/help/4_Misc/set/status_hold_lines
+share/bx/help/4_Misc/set/status_insert
+share/bx/help/4_Misc/set/status_mail
+share/bx/help/4_Misc/set/status_mode
+share/bx/help/4_Misc/set/status_nick
+share/bx/help/4_Misc/set/status_no_repeat
+share/bx/help/4_Misc/set/status_notify
+share/bx/help/4_Misc/set/status_oper
+share/bx/help/4_Misc/set/status_overwrite
+share/bx/help/4_Misc/set/status_query
+share/bx/help/4_Misc/set/status_scrollback
+share/bx/help/4_Misc/set/status_server
+share/bx/help/4_Misc/set/status_truncate_rhs
+share/bx/help/4_Misc/set/status_umode
+share/bx/help/4_Misc/set/status_user
+share/bx/help/4_Misc/set/status_voice
+share/bx/help/4_Misc/set/status_window
+share/bx/help/4_Misc/set/suppress_from_remote_server
+share/bx/help/4_Misc/set/suppress_server_motd
+share/bx/help/4_Misc/set/tab
+share/bx/help/4_Misc/set/tab_max
+share/bx/help/4_Misc/set/underline_video
+share/bx/help/4_Misc/set/user_information
+share/bx/help/4_Misc/set/verbose_ctcp
+share/bx/help/4_Misc/set/warn_of_ignores
+share/bx/help/4_Misc/set/xterm
+share/bx/help/4_Misc/set/xterm_options
+share/bx/help/4_Misc/summon
+share/bx/help/4_Misc/unclear
+share/bx/help/4_Misc/which
+share/bx/help/4_Misc/window/add
+share/bx/help/4_Misc/window/back
+share/bx/help/4_Misc/window/balance
+share/bx/help/4_Misc/window/beep_always
+share/bx/help/4_Misc/window/bind
+share/bx/help/4_Misc/window/channel
+share/bx/help/4_Misc/window/create
+share/bx/help/4_Misc/window/delete
+share/bx/help/4_Misc/window/discon
+share/bx/help/4_Misc/window/double
+share/bx/help/4_Misc/window/echo
+share/bx/help/4_Misc/window/fixed
+share/bx/help/4_Misc/window/font
+share/bx/help/4_Misc/window/goto
+share/bx/help/4_Misc/window/grow
+share/bx/help/4_Misc/window/hide
+share/bx/help/4_Misc/window/hide_others
+share/bx/help/4_Misc/window/hold_mode
+share/bx/help/4_Misc/window/kill
+share/bx/help/4_Misc/window/kill_others
+share/bx/help/4_Misc/window/killswap
+share/bx/help/4_Misc/window/last
+share/bx/help/4_Misc/window/lastlog
+share/bx/help/4_Misc/window/lastlog_level
+share/bx/help/4_Misc/window/level
+share/bx/help/4_Misc/window/list
+share/bx/help/4_Misc/window/log
+share/bx/help/4_Misc/window/logfile
+share/bx/help/4_Misc/window/menu
+share/bx/help/4_Misc/window/move
+share/bx/help/4_Misc/window/name
+share/bx/help/4_Misc/window/new
+share/bx/help/4_Misc/window/next
+share/bx/help/4_Misc/window/noserv
+share/bx/help/4_Misc/window/notify
+share/bx/help/4_Misc/window/notify_level
+share/bx/help/4_Misc/window/number
+share/bx/help/4_Misc/window/pop
+share/bx/help/4_Misc/window/previous
+share/bx/help/4_Misc/window/prompt
+share/bx/help/4_Misc/window/push
+share/bx/help/4_Misc/window/query
+share/bx/help/4_Misc/window/refnum
+share/bx/help/4_Misc/window/remove
+share/bx/help/4_Misc/window/scratch
+share/bx/help/4_Misc/window/scroll
+share/bx/help/4_Misc/window/server
+share/bx/help/4_Misc/window/setwindowpos
+share/bx/help/4_Misc/window/show
+share/bx/help/4_Misc/window/shrink
+share/bx/help/4_Misc/window/size
+share/bx/help/4_Misc/window/skip
+share/bx/help/4_Misc/window/stack
+share/bx/help/4_Misc/window/status_special
+share/bx/help/4_Misc/window/swap
+share/bx/help/4_Misc/window/unbind
+share/bx/help/4_Misc/window/window
+share/bx/help/5_Programming/5_Programming
+share/bx/help/5_Programming/alias
+share/bx/help/5_Programming/assign
+share/bx/help/5_Programming/blah
+share/bx/help/5_Programming/bless
+share/bx/help/5_Programming/break
+share/bx/help/5_Programming/call
+share/bx/help/5_Programming/comment
+share/bx/help/5_Programming/continue
+share/bx/help/5_Programming/do
+share/bx/help/5_Programming/dump
+share/bx/help/5_Programming/echo
+share/bx/help/5_Programming/eval
+share/bx/help/5_Programming/exec
+share/bx/help/5_Programming/fe
+share/bx/help/5_Programming/filedialog
+share/bx/help/5_Programming/fontdialog
+share/bx/help/5_Programming/for
+share/bx/help/5_Programming/foreach
+share/bx/help/5_Programming/hook
+share/bx/help/5_Programming/if
+share/bx/help/5_Programming/input
+share/bx/help/5_Programming/load
+share/bx/help/5_Programming/local
+share/bx/help/5_Programming/menu
+share/bx/help/5_Programming/menuitem
+share/bx/help/5_Programming/on/action
+share/bx/help/5_Programming/on/channel_nick
+share/bx/help/5_Programming/on/channel_signoff
+share/bx/help/5_Programming/on/connect
+share/bx/help/5_Programming/on/ctcp
+share/bx/help/5_Programming/on/ctcp_reply
+share/bx/help/5_Programming/on/dcc_chat
+share/bx/help/5_Programming/on/dcc_connect
+share/bx/help/5_Programming/on/dcc_list
+share/bx/help/5_Programming/on/dcc_lost
+share/bx/help/5_Programming/on/dcc_offer
+share/bx/help/5_Programming/on/dcc_raw
+share/bx/help/5_Programming/on/dcc_request
+share/bx/help/5_Programming/on/disconnect
+share/bx/help/5_Programming/on/encrypted_notice
+share/bx/help/5_Programming/on/encrypted_privmsg
+share/bx/help/5_Programming/on/exec
+share/bx/help/5_Programming/on/exec_errors
+share/bx/help/5_Programming/on/exec_exit
+share/bx/help/5_Programming/on/exec_prompt
+share/bx/help/5_Programming/on/exit
+share/bx/help/5_Programming/on/flood
+share/bx/help/5_Programming/on/help
+share/bx/help/5_Programming/on/hook
+share/bx/help/5_Programming/on/idle
+share/bx/help/5_Programming/on/input
+share/bx/help/5_Programming/on/invite
+share/bx/help/5_Programming/on/join
+share/bx/help/5_Programming/on/kick
+share/bx/help/5_Programming/on/kill
+share/bx/help/5_Programming/on/leave
+share/bx/help/5_Programming/on/list
+share/bx/help/5_Programming/on/mail
+share/bx/help/5_Programming/on/mode
+share/bx/help/5_Programming/on/mode_stripped
+share/bx/help/5_Programming/on/msg
+share/bx/help/5_Programming/on/msg_group
+share/bx/help/5_Programming/on/names
+share/bx/help/5_Programming/on/nickname
+share/bx/help/5_Programming/on/note
+share/bx/help/5_Programming/on/notice
+share/bx/help/5_Programming/on/notify_signoff
+share/bx/help/5_Programming/on/notify_signon
+share/bx/help/5_Programming/on/odd_server_stuff
+share/bx/help/5_Programming/on/on
+share/bx/help/5_Programming/on/on~
+share/bx/help/5_Programming/on/oper_notice
+share/bx/help/5_Programming/on/pong
+share/bx/help/5_Programming/on/public
+share/bx/help/5_Programming/on/public_msg
+share/bx/help/5_Programming/on/public_notice
+share/bx/help/5_Programming/on/public_other
+share/bx/help/5_Programming/on/raw_irc
+share/bx/help/5_Programming/on/redirect
+share/bx/help/5_Programming/on/send_action
+share/bx/help/5_Programming/on/send_ctcp
+share/bx/help/5_Programming/on/send_dcc_chat
+share/bx/help/5_Programming/on/send_msg
+share/bx/help/5_Programming/on/send_notice
+share/bx/help/5_Programming/on/send_public
+share/bx/help/5_Programming/on/send_to_server
+share/bx/help/5_Programming/on/server_lost
+share/bx/help/5_Programming/on/server_notice
+share/bx/help/5_Programming/on/set
+share/bx/help/5_Programming/on/signoff
+share/bx/help/5_Programming/on/silence
+share/bx/help/5_Programming/on/status_update
+share/bx/help/5_Programming/on/timer
+share/bx/help/5_Programming/on/topic
+share/bx/help/5_Programming/on/unload
+share/bx/help/5_Programming/on/wall
+share/bx/help/5_Programming/on/wallop
+share/bx/help/5_Programming/on/who
+share/bx/help/5_Programming/on/widelist
+share/bx/help/5_Programming/on/window
+share/bx/help/5_Programming/on/window_create
+share/bx/help/5_Programming/on/window_kill
+share/bx/help/5_Programming/on/yell
+share/bx/help/5_Programming/package
+share/bx/help/5_Programming/parsekey
+share/bx/help/5_Programming/pmpaste
+share/bx/help/5_Programming/pop
+share/bx/help/5_Programming/popupmenu
+share/bx/help/5_Programming/popupmsg
+share/bx/help/5_Programming/pretend
+share/bx/help/5_Programming/properties
+share/bx/help/5_Programming/push
+share/bx/help/5_Programming/queue
+share/bx/help/5_Programming/quote
+share/bx/help/5_Programming/redirect
+share/bx/help/5_Programming/repeat
+share/bx/help/5_Programming/return
+share/bx/help/5_Programming/save
+share/bx/help/5_Programming/send
+share/bx/help/5_Programming/sendline
+share/bx/help/5_Programming/setenv
+share/bx/help/5_Programming/shook
+share/bx/help/5_Programming/sleep
+share/bx/help/5_Programming/stack
+share/bx/help/5_Programming/stub
+share/bx/help/5_Programming/submenu
+share/bx/help/5_Programming/switch
+share/bx/help/5_Programming/timer
+share/bx/help/5_Programming/type
+share/bx/help/5_Programming/unload
+share/bx/help/5_Programming/unshift
+share/bx/help/5_Programming/usleep
+share/bx/help/5_Programming/wait
+share/bx/help/5_Programming/while
+share/bx/help/5_Programming/xecho
+share/bx/help/5_Programming/xeval
+share/bx/help/5_Programming/xtype
+share/bx/help/6_Functions/6_Functions
+share/bx/help/6_Functions/absstrlen
+share/bx/help/6_Functions/addtabkey
+share/bx/help/6_Functions/after
+share/bx/help/6_Functions/afterw
+share/bx/help/6_Functions/ajoinitem
+share/bx/help/6_Functions/aliasctl
+share/bx/help/6_Functions/annoy
+share/bx/help/6_Functions/ascii
+share/bx/help/6_Functions/bitchx
+share/bx/help/6_Functions/center
+share/bx/help/6_Functions/cexist
+share/bx/help/6_Functions/chanmode
+share/bx/help/6_Functions/channel
+share/bx/help/6_Functions/chmod
+share/bx/help/6_Functions/chngw
+share/bx/help/6_Functions/chop
+share/bx/help/6_Functions/chops
+share/bx/help/6_Functions/close
+share/bx/help/6_Functions/common
+share/bx/help/6_Functions/connect
+share/bx/help/6_Functions/convert
+share/bx/help/6_Functions/copattern
+share/bx/help/6_Functions/count
+share/bx/help/6_Functions/cparse
+share/bx/help/6_Functions/crypt
+share/bx/help/6_Functions/curpos
+share/bx/help/6_Functions/currchans
+share/bx/help/6_Functions/decode
+share/bx/help/6_Functions/delarray
+share/bx/help/6_Functions/delitem
+share/bx/help/6_Functions/deuhc
+share/bx/help/6_Functions/encode
+share/bx/help/6_Functions/eof
+share/bx/help/6_Functions/epic
+share/bx/help/6_Functions/fexist
+share/bx/help/6_Functions/filter
+share/bx/help/6_Functions/finditem
+share/bx/help/6_Functions/findw
+share/bx/help/6_Functions/fnexist
+share/bx/help/6_Functions/fromw
+share/bx/help/6_Functions/fsize
+share/bx/help/6_Functions/ftime
+share/bx/help/6_Functions/geom
+share/bx/help/6_Functions/getarrays
+share/bx/help/6_Functions/getenv
+share/bx/help/6_Functions/getgid
+share/bx/help/6_Functions/getitem
+share/bx/help/6_Functions/getlogin
+share/bx/help/6_Functions/getmatches
+share/bx/help/6_Functions/getpgrp
+share/bx/help/6_Functions/getsets
+share/bx/help/6_Functions/gettmatch
+share/bx/help/6_Functions/getuid
+share/bx/help/6_Functions/glob
+share/bx/help/6_Functions/gui
+share/bx/help/6_Functions/idle
+share/bx/help/6_Functions/ifinditem
+share/bx/help/6_Functions/igetmatches
+share/bx/help/6_Functions/igmask
+share/bx/help/6_Functions/igtype
+share/bx/help/6_Functions/index
+share/bx/help/6_Functions/indextoitem
+share/bx/help/6_Functions/info
+share/bx/help/6_Functions/insertw
+share/bx/help/6_Functions/iptoname
+share/bx/help/6_Functions/irclib
+share/bx/help/6_Functions/isalpha
+share/bx/help/6_Functions/ischannel
+share/bx/help/6_Functions/ischanop
+share/bx/help/6_Functions/ischanvoice
+share/bx/help/6_Functions/isconnected
+share/bx/help/6_Functions/iscurchan
+share/bx/help/6_Functions/isdigit
+share/bx/help/6_Functions/isnumber
+share/bx/help/6_Functions/itemtoindex
+share/bx/help/6_Functions/jot
+share/bx/help/6_Functions/key
+share/bx/help/6_Functions/lastclickline
+share/bx/help/6_Functions/lastclickx
+share/bx/help/6_Functions/lastclicky
+share/bx/help/6_Functions/lastserver
+share/bx/help/6_Functions/left
+share/bx/help/6_Functions/leftpc
+share/bx/help/6_Functions/leftw
+share/bx/help/6_Functions/listen
+share/bx/help/6_Functions/mask
+share/bx/help/6_Functions/match
+share/bx/help/6_Functions/matchitem
+share/bx/help/6_Functions/menucontrol
+share/bx/help/6_Functions/mid
+share/bx/help/6_Functions/midw
+share/bx/help/6_Functions/mkdir
+share/bx/help/6_Functions/msar
+share/bx/help/6_Functions/mychannels
+share/bx/help/6_Functions/myservers
+share/bx/help/6_Functions/nametoip
+share/bx/help/6_Functions/nohighlight
+share/bx/help/6_Functions/notify
+share/bx/help/6_Functions/numarrays
+share/bx/help/6_Functions/numitems
+share/bx/help/6_Functions/numonchannel
+share/bx/help/6_Functions/numwords
+share/bx/help/6_Functions/onchannel
+share/bx/help/6_Functions/open
+share/bx/help/6_Functions/pad
+share/bx/help/6_Functions/pattern
+share/bx/help/6_Functions/pid
+share/bx/help/6_Functions/pipe
+share/bx/help/6_Functions/pop
+share/bx/help/6_Functions/ppid
+share/bx/help/6_Functions/printlen
+share/bx/help/6_Functions/querywin
+share/bx/help/6_Functions/rand
+share/bx/help/6_Functions/randread
+share/bx/help/6_Functions/read
+share/bx/help/6_Functions/regex
+share/bx/help/6_Functions/remw
+share/bx/help/6_Functions/remws
+share/bx/help/6_Functions/rename
+share/bx/help/6_Functions/repeat
+share/bx/help/6_Functions/rest
+share/bx/help/6_Functions/restw
+share/bx/help/6_Functions/reverse
+share/bx/help/6_Functions/revw
+share/bx/help/6_Functions/rigmask
+share/bx/help/6_Functions/rigtype
+share/bx/help/6_Functions/rmdir
+share/bx/help/6_Functions/sar
+share/bx/help/6_Functions/servergroup
+share/bx/help/6_Functions/servername
+share/bx/help/6_Functions/servernick
+share/bx/help/6_Functions/serverport
+share/bx/help/6_Functions/servnum
+share/bx/help/6_Functions/servports
+share/bx/help/6_Functions/setitem
+share/bx/help/6_Functions/shift
+share/bx/help/6_Functions/sort
+share/bx/help/6_Functions/splice
+share/bx/help/6_Functions/split
+share/bx/help/6_Functions/srand
+share/bx/help/6_Functions/status
+share/bx/help/6_Functions/stime
+share/bx/help/6_Functions/strftime
+share/bx/help/6_Functions/strip
+share/bx/help/6_Functions/stripansi
+share/bx/help/6_Functions/stripansicodes
+share/bx/help/6_Functions/stripc
+share/bx/help/6_Functions/strlen
+share/bx/help/6_Functions/substr
+share/bx/help/6_Functions/tdiff
+share/bx/help/6_Functions/time
+share/bx/help/6_Functions/tolower
+share/bx/help/6_Functions/topic
+share/bx/help/6_Functions/toupper
+share/bx/help/6_Functions/tow
+share/bx/help/6_Functions/tr
+share/bx/help/6_Functions/trunc
+share/bx/help/6_Functions/twiddle
+share/bx/help/6_Functions/uhc
+share/bx/help/6_Functions/umask
+share/bx/help/6_Functions/uname
+share/bx/help/6_Functions/uniq
+share/bx/help/6_Functions/unlink
+share/bx/help/6_Functions/unshift
+share/bx/help/6_Functions/userhost
+share/bx/help/6_Functions/usermode
+share/bx/help/6_Functions/utime
+share/bx/help/6_Functions/version
+share/bx/help/6_Functions/which
+share/bx/help/6_Functions/winbound
+share/bx/help/6_Functions/winchan
+share/bx/help/6_Functions/winitem
+share/bx/help/6_Functions/winlevel
+share/bx/help/6_Functions/winnam
+share/bx/help/6_Functions/winnicklist
+share/bx/help/6_Functions/winnum
+share/bx/help/6_Functions/winrefs
+share/bx/help/6_Functions/winserv
+share/bx/help/6_Functions/winsize
+share/bx/help/6_Functions/winvisible
+share/bx/help/6_Functions/word
+share/bx/help/6_Functions/write
+share/bx/help/6_Functions/writeb
+share/bx/help/7_Docs/7_Docs
+share/bx/help/7_Docs/About_BitchX
+share/bx/help/7_Docs/Arrays
+share/bx/help/7_Docs/Command_Line
+share/bx/help/7_Docs/Compile_Opts
+share/bx/help/7_Docs/Copyright
+share/bx/help/7_Docs/Environment
+share/bx/help/7_Docs/Etiquette
+share/bx/help/7_Docs/Expressions
+share/bx/help/7_Docs/Introduction
+share/bx/help/7_Docs/Key_Bindings
+share/bx/help/7_Docs/New_User
+share/bx/help/7_Docs/Patterns
+share/bx/help/7_Docs/Programming
+share/bx/help/7_Docs/Security
+share/bx/help/7_Docs/Serial_Numbers
+share/bx/help/7_Docs/Server_List
+share/bx/help/7_Docs/Server_Numerics
+share/bx/help/7_Docs/Signals
+share/bx/help/7_Docs/Special_Vars
+share/bx/help/7_Docs/Status_Line
+share/bx/help/7_Docs/Text_Highlight
+share/bx/help/7_Docs/Updates
+share/bx/help/8_Scripts/2.8script
+share/bx/help/8_Scripts/8_Scripts
+share/bx/help/8_Scripts/action
+share/bx/help/8_Scripts/alias
+share/bx/help/8_Scripts/autokick
+share/bx/help/8_Scripts/autoop
+share/bx/help/8_Scripts/away
+share/bx/help/8_Scripts/basical
+share/bx/help/8_Scripts/bigcheese
+share/bx/help/8_Scripts/brc
+share/bx/help/8_Scripts/channel
+share/bx/help/8_Scripts/columns
+share/bx/help/8_Scripts/commander
+share/bx/help/8_Scripts/compl.mods
+share/bx/help/8_Scripts/complete
+share/bx/help/8_Scripts/country
+share/bx/help/8_Scripts/cursor
+share/bx/help/8_Scripts/deban
+share/bx/help/8_Scripts/deutsch
+share/bx/help/8_Scripts/disc
+share/bx/help/8_Scripts/edit
+share/bx/help/8_Scripts/english
+share/bx/help/8_Scripts/environment
+share/bx/help/8_Scripts/events
+share/bx/help/8_Scripts/events.hop
+share/bx/help/8_Scripts/fake-dcc
+share/bx/help/8_Scripts/fe
+share/bx/help/8_Scripts/files
+share/bx/help/8_Scripts/finger
+share/bx/help/8_Scripts/fnet
+share/bx/help/8_Scripts/follow
+share/bx/help/8_Scripts/functions
+share/bx/help/8_Scripts/funnyban
+share/bx/help/8_Scripts/genalias
+share/bx/help/8_Scripts/global
+share/bx/help/8_Scripts/guh
+share/bx/help/8_Scripts/history
+share/bx/help/8_Scripts/history-match
+share/bx/help/8_Scripts/imap
+share/bx/help/8_Scripts/ircprimer
+share/bx/help/8_Scripts/ircrc
+share/bx/help/8_Scripts/keybinds
+share/bx/help/8_Scripts/kickmenu
+share/bx/help/8_Scripts/killpath
+share/bx/help/8_Scripts/kpstat
+share/bx/help/8_Scripts/less
+share/bx/help/8_Scripts/list
+share/bx/help/8_Scripts/local
+share/bx/help/8_Scripts/log
+share/bx/help/8_Scripts/ls
+share/bx/help/8_Scripts/lynx_ircrc
+share/bx/help/8_Scripts/man
+share/bx/help/8_Scripts/meta
+share/bx/help/8_Scripts/meta1
+share/bx/help/8_Scripts/modes
+share/bx/help/8_Scripts/more
+share/bx/help/8_Scripts/msg
+share/bx/help/8_Scripts/mudirc
+share/bx/help/8_Scripts/mudlike
+share/bx/help/8_Scripts/multi
+share/bx/help/8_Scripts/nemesis
+share/bx/help/8_Scripts/netsplit
+share/bx/help/8_Scripts/netsplit.env
+share/bx/help/8_Scripts/newaway
+share/bx/help/8_Scripts/newformat
+share/bx/help/8_Scripts/nicks
+share/bx/help/8_Scripts/old-dcc
+share/bx/help/8_Scripts/oldping
+share/bx/help/8_Scripts/ping
+share/bx/help/8_Scripts/pipe
+share/bx/help/8_Scripts/prefix
+share/bx/help/8_Scripts/recursion
+share/bx/help/8_Scripts/repeat
+share/bx/help/8_Scripts/screen
+share/bx/help/8_Scripts/shell
+share/bx/help/8_Scripts/silent
+share/bx/help/8_Scripts/smileys
+share/bx/help/8_Scripts/sound
+share/bx/help/8_Scripts/spfix
+share/bx/help/8_Scripts/starutils
+share/bx/help/8_Scripts/stat
+share/bx/help/8_Scripts/tabkey
+share/bx/help/8_Scripts/tabkey.wc
+share/bx/help/8_Scripts/tc
+share/bx/help/8_Scripts/time
+share/bx/help/8_Scripts/tls
+share/bx/help/8_Scripts/troy
+share/bx/help/8_Scripts/uhnotify
+share/bx/help/8_Scripts/uping
+share/bx/help/8_Scripts/wallopstat
+share/bx/help/8_Scripts/webster
+share/bx/help/8_Scripts/window
+share/bx/help/README_FIRST
+share/bx/plugins/BitchX.hints
+share/bx/plugins/acro.so
+share/bx/plugins/amp.so
+share/bx/plugins/autobot.so
+share/bx/plugins/blowfish.so
+share/bx/plugins/encrypt.so
+share/bx/plugins/fserv.so
+share/bx/plugins/hint.so
+share/bx/plugins/nap.so
+share/bx/plugins/pkga.so
+share/bx/plugins/possum.so
+share/bx/plugins/qmail.so
+share/bx/plugins/scan.so
+share/bx/plugins/wavplay.so
+share/bx/script/actplug.gmz
+share/bx/script/bxglobal
+share/bx/script/bxtcl.tcl
+share/bx/script/file.tcl
+share/bx/script/fserve+vfs.tar.gz
+share/bx/script/menu.bx
+share/bx/translation/ASCII
+share/bx/translation/CP437
+share/bx/translation/CP850
+share/bx/translation/DANISH
+share/bx/translation/DEC_MCS
+share/bx/translation/DG_MCS
+share/bx/translation/DUTCH
+share/bx/translation/FINNISH
+share/bx/translation/FRENCH
+share/bx/translation/FRENCH_CANADIAN
+share/bx/translation/GERMAN
+share/bx/translation/HP_MCS
+share/bx/translation/IRV
+share/bx/translation/ITALIAN
+share/bx/translation/JIS
+share/bx/translation/MACINTOSH
+share/bx/translation/NEXT
+share/bx/translation/NORWEGIAN_1
+share/bx/translation/NORWEGIAN_2
+share/bx/translation/POLISH
+share/bx/translation/POLISH_NOPL
+share/bx/translation/PORTUGUESE
+share/bx/translation/PORTUGUESE_COM
+share/bx/translation/RUSSIAN
+share/bx/translation/RUSSIAN_ALT
+share/bx/translation/RUSSIAN_WIN
+share/bx/translation/SPANISH
+share/bx/translation/SWEDISH
+share/bx/translation/SWEDISH_NAMES
+share/bx/translation/SWEDISH_NAMES_COM
+share/bx/translation/SWISS
+share/bx/translation/UNITED_KINGDOM
+share/bx/translation/UNITED_KINGDOM_COM
+share/doc/bitchx/bxfaq.html
+@dirrm share/bx/help/1_General/dcc
+@dirrm share/bx/help/1_General/ctcp
+@dirrm share/bx/help/1_General
+@dirrm share/bx/help/2_Queries
+@dirrm share/bx/help/3_Operators
+@dirrm share/bx/help/4_Misc/bind
+@dirrm share/bx/help/4_Misc/set
+@dirrm share/bx/help/4_Misc/window
+@dirrm share/bx/help/4_Misc
+@dirrm share/bx/help/5_Programming/on
+@dirrm share/bx/help/5_Programming
+@dirrm share/bx/help/6_Functions
+@dirrm share/bx/help/7_Docs
+@dirrm share/bx/help/8_Scripts
+@dirrm share/doc/bitchx