Re: environment variable

2003-02-12 Thread Cliff Sarginson
On Wed, Feb 12, 2003 at 09:21:04AM -0600, Mike Vanecek wrote: > > -- Original Message --- > From: Joe Klemmer <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Sent: 10 Feb 2003 17:48:48 -0500 > Subject: Re: environment variable > > > On Mon, 200

Re: environment variable

2003-02-12 Thread Steven W. Orr
On Wed, 12 Feb 2003, Mike Vanecek wrote: => =>-- Original Message --- =>From: Joe Klemmer <[EMAIL PROTECTED]> =>To: [EMAIL PROTECTED] =>Sent: 10 Feb 2003 17:48:48 -0500 =>Subject: Re: environment variable => =>> On Mon, 2003-02-10 at 17:36, Jer

RE: environment variable

2003-02-12 Thread Dave Tibbals
System wide environment variables should go in /etc/profile. System wide functions and aliases Should go in /etc/bashrc When should one use /etc/bashrc as opposed to /etc/profile? Not always sure which one in which to put system wide changes. -- Psyche-list mailing list [EMAIL PROTECTED

Re: environment variable

2003-02-12 Thread Mike Vanecek
-- Original Message --- From: Joe Klemmer <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Sent: 10 Feb 2003 17:48:48 -0500 Subject: Re: environment variable > On Mon, 2003-02-10 at 17:36, Jerry Roy wrote: > > > How do I permanently set an environment variable

Re: environment variable

2003-02-11 Thread Robert P. J. Day
On Mon, 10 Feb 2003, Michael Fratoni wrote: > Either: > export ICAClient=/test/icadir > or > ICAClient=/test/icadir > export ICAClient > > Both of which result in: > > [mfratoni@paradox mfratoni]$ echo $ICAClient > /test/icadir and there's the extremely temporary: $ ICAClient=/test/icadir if

Re: environment variable

2003-02-11 Thread Robert P. J. Day
On 10 Feb 2003, Joe Klemmer wrote: > On Mon, 2003-02-10 at 17:36, Jerry Roy wrote: > > > How do I permanently set an environment variable so it works across > > reboots? I have the command down, just don't know which is the correct > > file (.bashrc? .profile?) to place it in. Someone said there

Re: environment variable

2003-02-10 Thread Michael Fratoni
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 10 February 2003 06:10 pm, Aaron Konstam wrote: > On Mon, Feb 10, 2003 at 02:36:43PM -0800, Jerry Roy wrote: > > Hi List, > > > > How do I permanently set an environment variable so it works across > > reboots? I have the command down, just d

Re: environment variable

2003-02-10 Thread Tony Nugent
On Mon Feb 10 2003 at 17:10, Aaron Konstam wrote: > On Mon, Feb 10, 2003 at 02:36:43PM -0800, Jerry Roy wrote: > > Hi List, > > > > How do I permanently set an environment variable so it works > > across reboots? I have the command down, just don't know which > > is the correct file (.bashrc? .pro

Re: environment variable

2003-02-10 Thread Aaron Konstam
On Mon, Feb 10, 2003 at 02:36:43PM -0800, Jerry Roy wrote: > Hi List, > > How do I permanently set an environment variable so it works across reboots? I have >the command down, just don't know which is the correct file (.bashrc? .profile?) to >place it in. Someone said there is a "Better" way. P

Re: environment variable

2003-02-10 Thread Joe Klemmer
On Mon, 2003-02-10 at 17:36, Jerry Roy wrote: > How do I permanently set an environment variable so it works across reboots? I have >the command down, just don't know which is the correct file (.bashrc? .profile?) to >place it in. Someone said there is a "Better" way. Please offer suggestions on