# Execute the command in remote shell; stdout goes to the specified# file on the remote.-shell:somescript.sh>>somelog.txt# Change the working directory to somedir/ before executing the command.-shell:somescript.sh>>somelog.txtchdir=somedir/# You can also use the 'args' form to provide the options. This command# will change the working directory to somedir/ and will only run when# somedir/somelog.txt doesn't exist.-shell:somescript.sh>>somelog.txtargs:chdir:somedir/creates:somelog.txt# Run a command that uses non-posix shell-isms (in this example /bin/sh# doesn't handle redirection and wildcards together but bash does)-shell:cat</tmp/*txtargs:executable:/bin/bash