shellQuoteArgs function

String shellQuoteArgs(
  1. List<String> args
)

Quote a list of arguments and join them with spaces.

Implementation

String shellQuoteArgs(List<String> args) {
  return args.map(shellQuote).join(' ');
}