Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] some fedora core 6 questions...
- Date: Mon, 02 Apr 2007 10:55:58 -0500
- From: Dimitri Maziuk <dmaziuk@xxxxxxxxxxxxx>
- Subject: Re: [Condor-users] some fedora core 6 questions...
simon kagwe wrote:
...
> I have not been able to add it to the system path so that I can use a
command without specifying the whole path. As a result, I have to do
stuff like ~condor/sbin/condor_master instead of just condor_master.
For [ba]sh:
PATH="${PATH}:/home/condor/bin:/home/condor/sbin"; export PATH
For [t]csh:
setenv PATH "${PATH}:/home/condor/bin:/home/condor/sbin"
Exactly where to stick it depends on what you want to do:
/etc/profile (bash), /etc/csh.login (tcsh) if you want it for everyone,
~/.bashrc., ~/.cshrc -- for individual user(s).
Dima