![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Modifying a variable value | kartikkumar84@g | UNIX for Dummies Questions & Answers | 6 | 05-22-2008 11:19 PM |
| echo $PATH doesn't match $HOME/.profile | Veestan | UNIX for Dummies Questions & Answers | 1 | 04-17-2008 11:15 AM |
| full path of .profile in unix | dba | UNIX for Dummies Questions & Answers | 6 | 02-22-2008 02:12 AM |
| Edited Path in Profile File | thewetch | UNIX for Dummies Questions & Answers | 4 | 03-08-2006 03:01 AM |
| Profile and environment variable | unclefab | SUN Solaris | 2 | 05-12-2005 06:57 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
In my /etc/profile, my $PATH variable is set as follows:
$PATH =/sbin:/usr/sbin:/usr/bin:/etc Then how do I add an additional directory to it? say /export/home/abd/rose Please advise. Thanks! Deepali |
| Forum Sponsor | ||
|
|
|
|||
|
Actually it should be;
Code:
PATH=/sbin:/usr/sbin:/usr/bin:/etc:/export/home/abd/rose export PATH Code:
PATH=/export/home/abd/rose:/sbin:/usr/sbin:/usr/bin:/etc export PATH |