sys.unixshellcommand(cmd) // Returns stdout string (backward compatible)
sys.unixshellcommand(cmd, @stdout_addr) // Puts stdout at addr, returns true/false
sys.unixshellcommand(cmd, @stdout_addr, @stderr_addr) // Both streams, returns true/false
Update any glue scripts in the system root (system.verbs.* etc.) that wrap or provide utilities for these shell command verbs to account for the new optional parameters.
Context
Issue #190 adds optional parameters to sys.unixshellcommand and sys.winshellcommand for capturing stderr separately:
Task
Update any glue scripts in the system root (system.verbs.* etc.) that wrap or provide utilities for these shell command verbs to account for the new optional parameters.
This includes:
Acceptance Criteria
Related