//==========================================================================================
// Filename: command.c
//
// Description: Routines to interpret commands. On Master these are from UA
See also e90 Reading Output from a Command.
try {
// Execute a command without arguments
String command = "ls";
Process child = Runtime.getRuntime().exec(command);
This example demonstrates how to implement an editing command. There are two steps when creating a custom command. The first is to create an action object that executes the desired functionality and t