Re: [newbie] Problems setting up paths

2000-01-07 Thread Matt Stegman
First, what you did does not do it- it will set the second path mentioned (after the double pipe: ||) only if "sbin" is not already in the path. To ensure this is in your path, add another line (below this first one) like so: export PATH=$PATH:/usr/local/netscape Second, put this line at the

[newbie] Problems setting up paths

2000-01-03 Thread Scott
How do you set the path? I am using the bash shell. I go into my .bashrc file and there is a line that looks like this: echo $PATH|grep -q /sbin || export PATH=$PATH:/usr/sbin/:/sbin/ then I add at the end of this line :/usr/local/netscape (I want netscape in my local path) I imagine this

Re: [newbie] Problems setting up paths

2000-01-03 Thread Mike Ladwig
On Mon, 03 Jan 2000, you wrote: How do you set the path? I am using the bash shell. I go into my .bashrc file and there is a line that looks like this: echo $PATH|grep -q /sbin || export PATH=$PATH:/usr/sbin/:/sbin/ then I add at the end of this line :/usr/local/netscape (I want netscape