Link to home
Start Free TrialLog in
Avatar of jcob_l
jcob_l

asked on

path123

The command is executed with out any error..

[newuser@newmac ~]$ export PATH=${PATH}:${ORACLE_HOME}/bin
[newuser@newmac ~]$

But I here what is PATH means..

How would I correct this..
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

>>How would I correct this..

What is incorrect about it?

PATH is the, well, the path Unix uses to look for executables when you type in a command.

What the syntax you show is doing is adding ORACLE_HOM/bin to the end of what PATH is already set to.

For example when you type in the command: who

Unix looks for what program in the folders in your PATH.
Avatar of jcob_l

ASKER

Is this correct..

export PATH=$PATH:/oracle/app/oracle/product/11.2.0/db/bin

This means what?
ASKER CERTIFIED SOLUTION
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

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
Avatar of jcob_l

ASKER

Thank you