script2.stx
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 06 Jun 2016 16:57:13 +0100
branchjv
changeset 1437 a208060f13b0
parent 1393 4d8585c39345
child 1474 5da7d89d0cae
permissions -rwxr-xr-x
Fixed UNIX makefiles to include classes in stx:projects/smalltalk package ...like they are in Windows builds. The problem is that UNIX Make.proto is (still) hand-written.

#!stx --script
"/
"/ notice that you can open more tools from the workspace
"/ (i.e. eval: NewLauncher open)
"/
Workspace open.
'done' printCR.

"
[
  Delay waitForSeconds:10.
  Process allInstances do:[:p |
    p isDead ifFalse:[
      p name print. ' ' print. p isSystemProcess printCR.
p suspendedContext notNil ifTrue:[
  p suspendedContext fullPrintAll.
  '' printCR.
].
    ].
  ].
  Processor anyUserProcessAtAll printCR.
  Smalltalk exit
] fork.
"