1. Installation of following packages are strongly recommended before
   installing bash:

	* EMX runtime DLLs (required)
	* GNU file utilites
	* GNU text utilites
	* GNU sed

   You can get them for example from ftp.leo.org/pub/comp/os/os2/unix/.../
   as well as from hobbes.nmsu.edu/pub/os2/unix/.../

   These utilites are heavily used by most Unix scripts, and beside this,
   they`re really useful :-)

2. Create your home directory (if not already). Most ported Unix programs
   keeps there their configuration files. Copy there the files under home/
   subdirectory of this archive.

3. Create a etc/ subdirectory (if not already). This can be /emx/etc, or
   even /tcpip/etc. Copy there the termcap.dat file from the /etc/ directory
   of this archive.

4. Add these (or similar) lines to CONFIG.SYS:

   set TERM=os2
   set TERMCAP=d:/emx/etc/termcap.dat

 | Note that TERM should be OS2 if you want most gray keys to work (see .inputrc).
 | Because of same fact you should use provided termcap file, although you can
 | as well copy the OS2 terminal description into your termcap (or even merge
 | it with the description of your favorite terminal).
 |
 | If you find any incompatibilities between OS2 terminal description and other
 | programs that uses TERMCAP please let me know.

   set HOME=d:/home/andy
   set USER=andy

 | HOME should point to your home directory. USER is not really needed, but
 | can be helpful sometimes.

   set LS_COLORS="no=00;36:fi=00;36:di=01;37:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.tar=00\:37:*.tgz=00;37:*.arj=00;37:*.taz=00;37:*.lzh=00;37:*.zip=00;37:*.z=00;37:*.Z=00;37:*.gz=00;37:*.deb=00;37:*.rar=00;37:*.jpg=01;36:*.gif=01;36:*.bmp=01;36:*.ppm=01;36:*.tga=01;36:*.xbm=01;36:*.xpm=01;36:*.tif=01;36:*.mpg=01;33:*.avi=01;33:*.gl=01;33:*.dl=01;33:*.mid=00;36:*.mtm=00;36:*.s3m=00;36:*.stm=00;36:*.mod=00;36:*.xm=00;36:*.inf=00;33:*.tex=00;33:*.doc=00;33:*.txt=00;33:*.texi=00;33:*.INI=00;31:*.ini=00;31:*.cfg=00;31:"

 | LS_COLORS defines the colors for displaying files (depending on extension).
 | You can setup it as you like.

   set CC=gcc
   set CXX=gcc
   set CFLAGS=-Zexe -Zcrtdll
   set CXXFLAGS=-Zexe -Zcrtdll

 | CC, CXX, CFLAGS, CXXFLAGS are used by `configure' scripts, and many
 | makefiles.

   set MAKE_SHELL=d:/usr/bin/bash.exe
   set SHELL=d:/usr/bin/bash.exe

 | MAKE_SHELL will work for the OS/2 port of GNU make. Of course, it would be
 | nicer if MAKE checked for the SHELL variable, maybe someday I`ll fix this.

   set YACC=bison -y
   set AWK=awk
   set LEX=flex

 | Set these if you have yacc/bison, awk and/or lex/flex.

   set BASH_ENV=d:/home/andy/.bashrc

 | BASH_ENV is run by non-interactive BASH copies. This is needed as
 | .bashrc contains some definitions which rises its compatibility with
 | unix scripts.

   set EDITOR=d:/usr/app/epm/epm.exe

 | EDITOR should point to your favorite editor (no matter whenever its PM or
 | windowed or fullscreen). Its used for `fc' command.

5. Copy the contents of /bin/ directory from this archive somewhere on your
   PATH. This can be /emx/bin directory, for example.

6. Put two INF books from this directory in a directory on BOOKSHELF, for
   example /emx/book. `bashref.inf' is the bash manual, `rlman.inf' is
   GNU readline manual (it contains useful info about functions that you
   can bind to keys). Create program objects from them, if you want.

7. Reboot.
