How can I know if an alias I make (in .bash_aliases
) is not replacing an actual command by same name? I don't want to do such things by accident.
(I looked in "Questions that may already have your answer" and "Similar Questions" but did not see matches)
I'm asking because I feel there is no warning given by the system (Ubuntu 13.10).
locate
which seems to me to be an alias for a more powerfulfind
command, but I could be wrong. I'm actually on a quest to find the difference – MishaP Oct 07 '14 at 23:44type locate
returns "locate is/usr/bin/locate
". See manpage oflocate
for more. I did not understood why you think it an alias. – sourav c. Oct 08 '14 at 02:57find
, so when I saw someone usinglocate
I just assumed it was some system default alias likell
. When I have a little extra time I'll dig in to try to find the difference. Hopefully it's not just (essentially) duplicate commands. That would really suck.... – MishaP Nov 06 '14 at 19:03