Quote a list of arguments and join them with spaces.
String shellQuoteArgs(List<String> args) { return args.map(shellQuote).join(' '); }