1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-21 11:11:21 -04:00
OC-PsychOS2/exec/ps.lua

6 lines
148 B
Lua
Raw Normal View History

print("PID# Parent | Name")
2019-10-27 08:34:02 -04:00
for k,v in pairs(os.tasks()) do
local t = os.taskInfo(v)
print(string.format("%4d %4d | %s",k,t.parent,t.name))
2018-11-02 12:05:41 -04:00
end