OSProcess.st
changeset 24822 24ceeb53827e
parent 24821 a45e3af1bbcb
child 25070 26915eb67235
equal deleted inserted replaced
24821:a45e3af1bbcb 24822:24ceeb53827e
   446      If aCommandString is an Array, the first element is the command to be executed,
   446      If aCommandString is an Array, the first element is the command to be executed,
   447      and the other elements are the arguments to the command. No shell is invoked in this case."
   447      and the other elements are the arguments to the command. No shell is invoked in this case."
   448 
   448 
   449     command := commandStringArg.
   449     command := commandStringArg.
   450     directory := stringOrFilenameArg.
   450     directory := stringOrFilenameArg.
       
   451 !
       
   452 
       
   453 command:commandArg directory:directoryArg outStream:outStreamArg errorStream:errorStreamArg 
       
   454     "set the command to be executed & directory, where to execute.
       
   455      and output/error streams.
       
   456      See comments in individual setters for more info"
       
   457 
       
   458     command := commandArg.
       
   459     directory := directoryArg.
       
   460     outStream := outStreamArg.
       
   461     errorStream := errorStreamArg.
       
   462 
       
   463 
   451 !
   464 !
   452 
   465 
   453 command:commandArg environment:environmentArg directory:directoryArg inStream:inStreamArg outStream:outStreamArg errorStream:errorStreamArg 
   466 command:commandArg environment:environmentArg directory:directoryArg inStream:inStreamArg outStream:outStreamArg errorStream:errorStreamArg 
   454     "set the command to be executed & directory, where to execute.
   467     "set the command to be executed & directory, where to execute.
   455      and input/output streams.
   468      and input/output streams.