Args = {...}

local content = http.get(Args[1])
local file = fs.open(Args[2], "w")
file.write(content.readAll())
file.close()
