1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-25 14:43:22 +00:00
CC-Tweaked/src/main/resources/assets/computercraft/lua/rom/programs/programs.lua
2017-05-17 19:48:27 +01:00

10 lines
182 B
Lua

local bAll = false
local tArgs = { ... }
if #tArgs > 0 and tArgs[1] == "all" then
bAll = true
end
local tPrograms = shell.programs( bAll )
textutils.pagedTabulate( tPrograms )