*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Wed, 26 Mar 1997 12:48:39 +0100
changeset 2501 10e5faa8dafe
parent 2500 c217e646447e
child 2502 8f3bf6043968
*** empty log message ***
Unix.st
--- a/Unix.st	Wed Mar 26 02:13:10 1997 +0100
+++ b/Unix.st	Wed Mar 26 12:48:39 1997 +0100
@@ -2824,9 +2824,9 @@
 
      id := OperatingSystem fork.
      id == 0 ifTrue:[
-	"I am the child"
+	'I am the child'.
 	OperatingSystem exec:'/bin/ls' withArguments:#('ls' '/tmp').
-	"not reached"
+	'not reached'.
      ]
     "
     "
@@ -2834,9 +2834,9 @@
 
      id := OperatingSystem fork.
      id == 0 ifTrue:[
-	"I am the child"
+	'I am the child'.
 	OperatingSystem exec:'/bin/sh' withArguments:#('sh' '-c' 'sleep 2;echo 1;sleep 2;echo 2').
-	"not reached"
+	'not reached'.
      ].
      id printNL.
      (Delay forSeconds:3.5) wait.
@@ -2947,9 +2947,9 @@
 
      id := OperatingSystem fork.
      id == 0 ifTrue:[
-	"I am the child"
+	'I am the child'.
 	OperatingSystem exec:'/bin/ls' withArguments:#('ls' '/tmp').
-	"not reached"
+	'not reached'.
      ]
     "
     "
@@ -2957,9 +2957,9 @@
 
      id := OperatingSystem fork.
      id == 0 ifTrue:[
-	"I am the child"
+	'I am the child'.
 	OperatingSystem exec:'/bin/sh' withArguments:#('sh' '-c' 'sleep 2;echo 1;sleep 2;echo 2').
-	"not reached"
+	'not reached'.
      ].
      id printNL.
      (Delay forSeconds:3.5) wait.
@@ -8336,6 +8336,6 @@
 !OperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Unix.st,v 1.199 1997-03-25 11:34:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Unix.st,v 1.200 1997-03-26 11:48:39 cg Exp $'
 ! !
 OperatingSystem initialize!