Method: Bio::Command.make_command_line_windows

Defined in:
lib/bio/command.rb

.make_command_line_windows(ary) ⇒ Object

Generate command line string with special characters escaped for cmd.exe on Windows.


Arguments:

  • (required) ary: Array containing String objects

Returns

String object



97
98
99
# File 'lib/bio/command.rb', line 97

def make_command_line_windows(ary)
  ary.collect { |str| escape_shell_windows(str) }.join(" ")
end