exec-program <program path> \ [ args <program arg> [ , ... ] ] \ [ status <exit status> ] \ [ ( input <input string> [ input-length <string length> ] ) \ | ( input-file <input file> ) ] \ [ ( output <output string> ) \ | ( output-file <output file> ) ] \ [ ( error <error string> ) | ( error-file <error file> ) ]Copied!
exec-program "myprogram"Copied!
exec-program "grep" args "-v", "bad line" "config" input "line 1\nline 2\nbad line\nline 3" output ovar p-out ovarCopied!
exec-program "ls" output ovarCopied!
exec-program "ls" args "-a", "-l", "-s" output-file "lsout" read-file "lsout" to final_res p-out final_resCopied!
exec-program "wc" args "-l" input-file "config" output ovar p-out ovarCopied!