home *** CD-ROM | disk | FTP | other *** search
/ tusportal.tus.k12.pa.us / tusportal.tus.k12.pa.us.tar / tusportal.tus.k12.pa.us / Wyse / latest-image.raw / 0.img / etc / profile.d / zzz-groff.csh < prev    next >
Text File  |  2010-05-05  |  381b  |  21 lines

  1. #
  2. #    /etc/profile.d/zzz-groff.csh
  3. #
  4. #    This script must be executed after setting the LANG variable.
  5.  
  6. if ( $?LANG ) then
  7.  
  8. switch ( $LANG )
  9.     case ja*:
  10.     setenv MAN_KEEP_FORMATTING yes
  11.     unsetenv GROFF_NO_SGR
  12.     case zh*:
  13.     setenv MAN_KEEP_FORMATTING yes
  14.     unsetenv GROFF_NO_SGR
  15.     case ko*:
  16.     setenv MAN_KEEP_FORMATTING yes
  17.     unsetenv GROFF_NO_SGR
  18. endsw
  19.  
  20. endif
  21.