chand1012

ccdownload

Aug 14th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. print("Enter url to download from:")
  2. local url = read()
  3. print("Enter filename to save to:")
  4. local name = read()
  5. print("Downloading...")
  6. local request, err = http.get(url)
  7. local contents = request.readAll()
  8. request.close()
  9. print("Saving to file...")
  10. local file = fs.open(name, "w")
  11. file.write(contents)
  12. file.close()
  13. print("Done.")
Add Comment
Please, Sign In to add comment