cmd = case RbConfig::CONFIG['host_os']
when /mswin|mingw|cygwin/ then"start "when /darwin/ then"open "when /linux|bsd/ then "xdg-open "
else raise "No OS detected"
end
b = system cmd + s
cmd = case RbConfig::CONFIG['host_os']
when /mswin|mingw|cygwin/ then "start "
when /darwin/ then "open "
when /linux|bsd/ then "xdg-open "
else raise "No OS detected"
end
b = system cmd + s