是否有ruby函数在(Linux)系统路径中搜索可执行文件?
我知道我可以这样做:
path = `which ls` # found if $?.exitstatus == 0
但它有一种红宝石的方式吗?类似的东西:
find_in_path('ls') # => '/bin/ls'
答案 0 :(得分:3)
>> require 'mkmf'
=> true
>> find_executable 'ls'
checking for ls... yes
=> "/bin/ls"
>> find_executable 'no-such-command'
checking for no-such-command... no
=> nil