Method: Bio::Command.make_command_line_unix

Defined in:
lib/bio/command.rb

.make_command_line_unix(ary) ⇒ Object

Generate command line string with special characters escaped for UNIX shells.


Arguments:

  • (required) ary: Array containing String objects

Returns

String object



107
108
109
# File 'lib/bio/command.rb', line 107

def make_command_line_unix(ary)
  ary.collect { |str| escape_shell_unix(str) }.join(" ")
end