Advertisement
RemoteMine

Hastebin-Get 1.0

Nov 15th, 2012
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.76 KB | None | 0 0
  1. --Setup
  2. local tArgs = {...}
  3. local program = shell.getRunningProgram()
  4.  
  5.  
  6. if #tArgs < 2 then
  7.   print("Usage: "..program.." <code> <save-file-name>")
  8.   print("The code must not contain the . with more random letters after it.")
  9.   print("See the forum thread on http://www.computercraft.info/forums2 for more info.")
  10.   print("Thanks!")
  11. else
  12.  
  13. --Variables
  14. local fileA = tArgs[2]
  15. local http1 = http.get("http://www.hastebin.com/raw/"..tArgs[1])
  16. local http2 = http1.readAll()
  17. local file = fs.open(tostring(fileA), "w")
  18.  
  19.  
  20.  
  21. --Functions
  22. local function clear()
  23.    term.clear()
  24.    term.setCursorPos(1,1)
  25. end
  26.  
  27. local function main()
  28.  file.write(http2)
  29.  file.close()
  30.  print("Success! Thank you!")
  31.  return nil
  32. end
  33.  
  34. --Execution (very simple)
  35. main()
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement