OSProcess.st
changeset 24820 301c642f32e7
parent 24724 b1afe939b13f
child 24821 a45e3af1bbcb
--- a/OSProcess.st	Thu Oct 03 11:54:06 2019 +0200
+++ b/OSProcess.st	Sat Oct 05 10:47:42 2019 +0200
@@ -498,6 +498,15 @@
     lineWise := lineWiseArg.
 !
 
+command:commandArg outStream:outStreamArg errorStream:errorStreamArg 
+    "set the command to be executed and input/output streams.
+     See comments in individual setters for more info"
+
+    command := commandArg.
+    outStream := outStreamArg.
+    errorStream := errorStreamArg.
+!
+
 commandString
     "the OS (shell-) command, as string"