shelljoin(array)
Class Public methods
Builds a command line string from an argument list, array.
All elements are joined into a single string with fields separated by a
space, where each element is escaped for Bourne shell and stringified using
to_s.
ary = ["There's", "a", "time", "and", "place", "for", "everything"]
argv = Shellwords.join(ary)
argv #=> "There\\'s a time and place for everything"
Array#shelljoin is a shortcut
for this function.
ary = ["Don't", "rock", "the", "b