Results 1 to 3 of 3
it is
Code:
export name=$path
, right?...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 01-08-2004 #1Just Joined!
- Join Date
- Jan 2004
- Posts
- 1
how do i set enviroment paths?
it is
, right?Code:export name=$path
- 01-08-2004 #2
I think it's:
Code:variable=value export variable
Regards Scienitca (registered user #335819 - http://counter.li.org )
--
A master is nothing more than a student who knows something of which he can teach to other students.
- 01-08-2004 #3Linux Guru
- Join Date
- Oct 2001
- Location
- Täby, Sweden
- Posts
- 7,578
In traditional UNIX shells it is as scientica says; you can't set a value and export it in the same command. However, bash allows that, so as long as you use bash, it is:
Code:export variable=value


Reply With Quote
