home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / MorphOS / Epic4_mos / share / epic / help / 7_docs / Environment < prev    next >
Encoding:
Text File  |  2002-10-28  |  1.7 KB  |  41 lines

  1. Environment Settings Relevant to EPIC                                     
  2.  
  3. Numerous environment variables are recognized by .  Environment variables are
  4. various settings that describe your login process on a Unix system.  How they
  5. are set mainly depends on the command shell you use.
  6.  
  7.  * For csh and tcsh shells:
  8.       setenv variable "value"
  9.  
  10.  * For bash, ksh, and zsh shells:
  11.       export variable="value"
  12.  
  13.  * For sh (a true Bourne shell) and ash shells, and Bourne-like shells:
  14.       variable="value"
  15.       export variable
  16.  
  17.  * For the rc and es shells (Plan 9 descendants):
  18.       variable='value'
  19.  
  20. For all shells (except rc and es), either single quotes (') or double quotes
  21. (") may be used.  For all shells, the case of the variable is significant.
  22. Environment variables are, by convention, in all uppercase, and EPIC is no
  23. exception.  The following variables are used by EPIC:
  24.  
  25.    IRCNICK     default nickname when connecting to a server
  26.    IRCNAME     any lunacy you want instead of your real name
  27.    IRCHOST     default local host name to use on multihomed hosts
  28.    IRCSERVER   default server list, space delimited, serv:port:pass ok
  29.    IRCPORT     default server port to connect to
  30.    IRCUMODE    initial user mode (does not work on all servers)
  31.    IRCPATH     same as LOAD_PATH setting
  32.    IRCRC       alternate startup file (in lieu of ~/.ircrc)
  33.    IRC_SERVERS_FILE  same as compile-time SERVERS_FILE, specifies a file
  34.                      to get a list of servers from
  35.  
  36. EPIC also uses the TERM and HOME variables, which are usually set when you
  37. login to your Unix system.  All environment variables are available for
  38. use inside EPIC as normal variables, assuming another variable of the same
  39. name does not exist.
  40.  
  41.