Hiya, my scripts rely heavily on external programs and scripts. I need to be sure that a program I need to call exists. Manually, I'd check this using 'which' in the commandline.
Is there an equivalent to File.exists? for things in $PATH?
(yes I guess I could parse %x[which scriptINeedToRun] but that's not super elegant.
Thanks! yannick
UPDATE: Here's the solution I retained:
def command?(command)
system("which #{ command} > /dev/null 2>&1")
end
whichcommand in the method will return either 1 if the commandcommanddoesn't exist or 0 if the commandcommandexists. So to make the method work, you should replace 127 by 1 – Aziz Light Oct 26 '10 at 20:52whichis present. This excludes Windows and some other systems. Please remember that Windows is still heavily used among Ruby devs; see my solution for a true cross-platform command. – mislav Mar 29 '11 at 10:26