Similar to system(3). Executes the given command in the system shell.
impure function system input String callStr "String to call: sh -c $callStr"; input String outputFile = "" "The output is redirected to this file (unless already done by callStr)"; output Integer retval "Return value of the system call; usually 0 on success"; end system;