UNIX Software List (Sun & Moon)

Sun Workshop University Edition 5.0 for SPARC

  • Sun WorkShop Compiler C 5.0
  • Sun WorkShop Compiler C++ 5.0
  • Sun WorkShop Compiler FORTRAN 77 5.0
  • Sun WorkShop Compiler Fortran 90 2.0
  • Sun WorkShop Tools.h++ 7.0
  • Sun WorkShop Garbage Collector Libraries 1.0 for C++
  • Sun WorkShop Visual 3.0
  • Sun WorkShop IPE 5.0
  • Sun WorkShop TeamWare 2.1
  • Sun WorkShop FileMerge 3.1
  • Sun WorkShop Dbx 5.0
  • Sun Performance Library 2.0
  • Sun WorkShop Performance Analyzer 5.0
  • Sun WorkShop LoopTool 2.2
  • Sun WorkShop LockLint 2.2
  • XEmacs 20.4 Source Distribution

Shareware & freeware

  • Vim - ver 5.3 - vi improved, a programmers text editor
  • gcc, g++ - ver 2.95.1 - GNU project C and C++ Compiler
  • perl version 5.005_03
  • tin - ver 1.3 - text based news reader
  • pine - ver. 4.05 - Program for Internet News and Email
  • lynx - ver 2.8.2 - text based Internet browser, support SSL
  • a2ps - ver 4.12 - format files for printing on a PostScript printer
  • tcsh - ver 6.07.02 - enhanced c shell
  • bash - ver 2.02 - GNU bourne-Again shell

On-line manual

http://docs.sun.com/ab2/products_C/INDEX/@ProductViewer/2068;td=1?Ab2Lang=C&Ab2Enc=iso8859-1

Setup Environment Variables for Sun University Shop 5.0

This section describes how to change your PATH and MANPATH variables to access the current release. See the section that describes the shell you use.

Using the C Shell (csh) or tcsh

If you use the C shell, follow these steps:

  1. Open your ~/.cshrc file in your preferred editor
  2. Add the following lines at the end of the file:

    set path=(install-directory/SUNWspro/bin $path)
    setenv MANPATH install-directory/SUNWspro/man:install-directory/\

  3. Save your .cshrc file.
  4. Reread your shell's initialization files by executing the following command:

    % source ~/.cshrc

Using the Bourne Shell (sh) or GNU Bourne-Again Shell (bash)

If you use the Bourne shell, follow these steps:

  1. Open your ~/.profile file in your preferred editor
  2. Add the following lines at the end of the file:

    PATH=install-directory/SUNWspro/bin:$PATH
    MANPATH=install-directory/SUNWspro/man:install-directory/\
    export MANPATH PATH

  3. Save your .profile file
  4. Reread your shell's initialization files by executing the following command:

    $ . ~/.profile