是否有 ruby 函数可以在(Linux)系统路径中搜索可执行文件?
我知道我可以这样做:
path = `which ls` # found if $?.exitstatus == 0
但它有红宝石的方式吗?就像是:
find_in_path('ls') # => '/bin/ls'
是否有 ruby 函数可以在(Linux)系统路径中搜索可执行文件?
我知道我可以这样做:
path = `which ls` # found if $?.exitstatus == 0
但它有红宝石的方式吗?就像是:
find_in_path('ls') # => '/bin/ls'