如何在Ruby中搜索$ PATH中的可执行文件

时间:2013-06-20 08:07:53

标签: ruby

是否有ruby函数在(Linux)系统路径中搜索可执行文件?

我知道我可以这样做:

path = `which ls` # found if $?.exitstatus == 0

但它有一种红宝石的方式吗?类似的东西:

find_in_path('ls') # => '/bin/ls'

1 个答案:

答案 0 :(得分:3)

find_executable

>> require 'mkmf'
=> true
>> find_executable 'ls'
checking for ls... yes
=> "/bin/ls"
>> find_executable 'no-such-command'
checking for no-such-command... no
=> nil