Link to home
Start Free TrialLog in
Avatar of ROCK1972
ROCK1972

asked on

"set" and "env" commands in Solaris 8

When I type "set" and "env" commands I get a certain list of values where paths, variables, files are defined.  From WHERE do set and env get their info from???  How can I edit these files so when I type "set" and "env" and get the desired paths/variables.
ASKER CERTIFIED SOLUTION
Avatar of yuzh
yuzh

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
sh/ksh/bash: /etc/profile and $HOME/.profile  (and possibly other "." files in your home directory)
csh: /etc/login and $HOME/.login + .cshrc

Avatar of yuzh
yuzh

A good doc for Shell Initialization Files:
http://docs.sun.com/app/docs/doc/816-1048/6m7gaddgt?a=view
Avatar of ROCK1972

ASKER

Thanks for the answer and sorry for the late reply.