Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/shellwords.rb

Instance Method Summary collapse

Instance Method Details

#shelljoinObject

call-seq:

array.shelljoin => string

Builds a command line string from an argument list array joining all elements escaped for the Bourne shell and separated by a space.

See Shellwords.shelljoin for details.



228
229
230
# File 'lib/shellwords.rb', line 228

def shelljoin
  Shellwords.join(self)
end