Computercraft thingies
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.

help.lua 116B

123456
  1. local args = {...}
  2. local file = "/manpages/" .. args[1]
  3. local f = fs.open(file, "r")
  4. print(f.readLine())
  5. f.close()