Standard System Input and Output

The Standard System Input and Output library is JM-'s way to control the OS's console's input and output, and can be included in a JM- Project using: #incd .stdsysio

If something isn't clear about the syntax shown below, we recommend you to check out the examples category

Syntax & Examples

.stdsysio : Common use cases, and syntax examples;

// Run a command in the system shell, without output
#incd .stdsysio
sys.con{shell, "echo \"Hello World!\""};
// Run a command in a specific shell, without output
#incd .stdsysio
sys.con{bash, "echo \"Hello World!\""};
// Run a command with output
#incd .stdsysio
sys.con{shell, "ls", con.out_sys(.output);};

Last updated