Advertisement
Guest User

cat

a guest
Oct 16th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. --cat by CosmoConsole for ComputerCraft
  2. local args = { ... }
  3. if #args == 0 then
  4.  print("Usage: cat <file>")
  5.  error()
  6. end
  7. local handle = fs.open(shell.resolve(args[1]),"r")
  8. if handle == nil then
  9.  error()
  10. end
  11. local line
  12. while true do
  13.  line = handle.readLine()
  14.  if line == nil then
  15.   break
  16.  end
  17.  print(line)
  18. end
  19. handle.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement