> You can use 'which' to find out which ls is being called, but it goes by 
> first come first serve:
> echo $PATH
> /home/jeffd/bin:/usr/local/bin:/usr/bin:/bin
> [EMAIL PROTECTED]:~$ touch ~/bin/ls
> [EMAIL PROTECTED]:~$ chmod 755 ~/bin/ls
> [EMAIL PROTECTED]:~$ which ls
> /home/jeffd/bin/ls
> [EMAIL PROTECTED]:~$ rm ~/bin/ls
> [EMAIL PROTECTED]:~$ which ls
> /bin/ls
> 

Additionally, which -a will list all of them (in order)

-- 
Tarek


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to