; PCB List Script file ; ; Load some processes: start P01 1 ps 0 start P02 3 start P03 1 ; ; Check the status of the jobs: ps all ; ; Sort and check again: sort by priority ps all ; ; Put a job into the run state: switch ; ; Verify: ps all ; ; Do a context switch and verify: switch ps all ; ; Again: switch ps all ; ; Add another process: start P04 2 ps 3 ; ; Kill two and verify: kill 2 kill 0 ps all ; ; Shut down: exit