3

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

我知道我可以这样做:

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

但它有红宝石的方式吗?就像是:

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

1 回答 1

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
于 2013-06-20T16:14:05.433 回答