Method: Rex::Parser::Arguments.from_s

Defined in:
lib/rex/parser/arguments.rb

.from_s(str) ⇒ Object

Takes a string and converts it into an array of arguments.



40
41
42
# File 'lib/rex/parser/arguments.rb', line 40

def self.from_s(str)
  Shellwords.shellwords(str)
end