Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --cat by CosmoConsole for ComputerCraft
- local args = { ... }
- if #args == 0 then
- print("Usage: cat <file>")
- error()
- end
- local handle = fs.open(shell.resolve(args[1]),"r")
- if handle == nil then
- error()
- end
- local line
- while true do
- line = handle.readLine()
- if line == nil then
- break
- end
- print(line)
- end
- handle.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement