Env

hey guys!!!!

            i have a few question .. how to modify the user ENV in Sun Solaris 10 ... Thanks!!!!

Modifying the environment is handled by the shell. It would be mostly independent of the operating system.
Here's how you can modify the env in various shells:
For sh:

PATH=/usr/bin:/usr/local/bin:/usr/ucb; export PATH

For ksh,bash:

export PATH=/usr/bin:/usr/local/bin:/usr/ucb

For csh/tcsh:

setenv PATH /usr/bin:/usr/local/bin:/usr/ucb