public CommandResult execute(CommandInvocation commandInvocation) throws IOException {
Shell shell = commandInvocation.getShell();
if (help || arguments == null || arguments.isEmpty()) {
shell.out().println(commandInvocation.getHelpInfo("echo"));
return CommandResult.SUCCESS;
}
String stdout = "";
for (String s : arguments) {