Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- shell.run("clr")
- write("I'm feeling lucky > ")
- local website = read()
- if website:sub(1,4) ~= "http" then
- website = "http://"..website
- end
- local server = http.post(website)
- local res = server.readAll()
- server.close()
- local h = fs.open("response",'w')
- h.write(res)
- h.close()
- shell.run("edit response")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement