Operating system for OpenComputers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
142B

  1. print("PID# Parent Name")
  2. for k,v in pairs(os.tasks()) do
  3. local t = os.taskInfo(v)
  4. print(string.format("%4d %4d %s",k,v.parent,v.name))
  5. end