I am attempting to find a binary file in a Linux system using something like this:

if [ -f `which $1` ] then
    echo "File Found"
else
    echo "File not Found"
fi

while the code works fine the problem is "which" will return a null operator which BASH interprets as something existing so a file always comes back found. Any suggestions would be great.

Thanks

link|improve this question

80% accept rate
feedback

3 Answers

up vote 2 down vote accepted
if [ `which "$1"` != "" ]; then

which won't return "" when it finds the binary.

link|improve this answer
feedback

Update

After a bit more thought, there is no reason to use [[ ]] (or [ ] for that matter). There is even no reason to use command substitution either $()

if which "$1" > /dev/null 2>&1; then
  echo "found"
else
  echo "not found"
fi

If you're using bash then please use the [[ ]] construct. One of the benefits (among many) is that it doesn't have this problem

[[ -f $(which $1) ]] && echo found

Also, `` is deprecated, use $() instead

link|improve this answer
What are you rich? We don't just have square brackets to give away with these economic times.. (which "/bin/ls") .. silent on failure, prints the path on success. – synthesizerpatel Jan 26 at 5:34
@synthesizerpatel I think you meant hash "/bin/ls". But you're right, the new answer is sans two parens and four braces. Now everybody can afford to run it! – SiegeX Jan 26 at 5:44
feedback

I like 'hash' for this (if you're a bash user..) (and it's actually more portable behavior than which)

hash blahblah

bash: hash: lklkj: not found

hash /bin/ls <-- silently successful

This method also works on Linux and OSX, where-as 'which' has different on each..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.