# File lib/launchy/detect/runner.rb, line 72 def all_args( cmd, *args ) args = [ 'cmd', '/c', *shell_commands( cmd, *args ) ] Launchy.log "Windows: all_args => #{args.inspect}" return args end
# File lib/launchy/detect/runner.rb, line 78 def dry_run( cmd, *args ) all_args( cmd, *args ).join(" ") end
escape the reserved shell characters in windows command shell technet.microsoft.com/en-us/library/cc723564.aspx
# File lib/launchy/detect/runner.rb, line 84 def shell_commands( cmd, *args ) cmdline = [ cmd.shellsplit ] cmdline << args.flatten.collect { |a| a.to_s.gsub(%r([&|()<>^])/, "^\\1") } return commandline_normalize( cmdline ) end
# File lib/launchy/detect/runner.rb, line 90 def wet_run( cmd, *args ) system( *all_args( cmd, *args ) ) end