OSProcess.st
changeset 23505 54b7a8af8117
parent 23501 d362810d013c
child 23537 97943007572e
--- a/OSProcess.st	Sun Nov 04 20:12:13 2018 +0100
+++ b/OSProcess.st	Sun Nov 04 20:16:16 2018 +0100
@@ -391,6 +391,21 @@
     directory := stringOrFilenameArg.
 !
 
+command:commandArg environment:environmentArg directory:directoryArg inStream:inStreamArg outStream:outStreamArg errorStream:errorStreamArg 
+    "set the command to be executed & directory, where to execute.
+     and input/output streams.
+     See comments in individual setters for more info"
+
+    command := commandArg.
+    environment := environmentArg.
+    directory := directoryArg.
+    inStream := inStreamArg.
+    outStream := outStreamArg.
+    errorStream := errorStreamArg.
+
+    "Created: / 04-11-2018 / 18:28:24 / Claus Gittinger"
+!
+
 command:commandArg environment:environmentArg directory:directoryArg inStream:inStreamArg outStream:outStreamArg errorStream:errorStreamArg auxStream:auxStreamArg showWindow:showWindowArg lineWise:lineWiseArg 
     "set the command to be executed & directory, where to execute.
      and input/output streams.