7 lines
182 B
Text
7 lines
182 B
Text
|
local tArgs = {...}
|
||
|
|
||
|
if #tArgs < 1 then
|
||
|
kerneldraw.printAppInfo("man", "type 'ls system/man-pages' or 'manpages'")
|
||
|
else
|
||
|
kerneldraw.printAppInfo("man", man.findManual(tArgs[1]))
|
||
|
end
|