Tectia

Enabling Manual Pages

The online manual pages for the product are installed to /opt/tectia/man. If you want your USS manual page tool (/bin/man) to be able to find the new manual pages, you will have to perform the following environment setup.

If you want to have the manual pages visible to all USS shell users, you must edit system-wide configuration files:

  1. Add the following lines to file /etc/profile:

    if test X$MANPATH = X ; then
      MANPATH="/usr/man/%L"
    fi
    MANPATH="/opt/tectia/man/%L:$MANPATH"
    export MANPATH
    
  2. Add the following lines to file /etc/cshrc:

    if
    (! $?MANPATH) setenv MANPATH "/usr/man/%L"
    setenv MANPATH "/opt/tectia/man/%L:$MANPATH"
    

If you want to have the manual pages visible to just one user, you must edit two files in the user's home directory:

  1. Add the following lines to .profile in the user's home directory:

    if test X$MANPATH = X ; then
      MANPATH="/usr/man/%L"
    fi
    MANPATH="/opt/tectia/man/%L:$MANPATH"
    export MANPATH
    
  2. Add the following lines to file .cshrc in the user's home directory:

    if (! $?MANPATH) setenv MANPATH "/usr/man/%L"
    setenv MANPATH "/opt/tectia/man/%L:$MANPATH"