You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wget is a program for downloading files from the internet. This is useful for downloading programs created by other players.
2
+
If no filename is specified wget will try to determine the filename from the URL by stripping any anchors, parameters and trailing slashes and then taking everything remaining after the last slash.
2
3
The HTTP API must be enabled in ComputerCraft.cfg to use this program.
3
-
4
4
ex:
5
5
"wget http://pastebin.com/raw/CxaWmPrX test" will download the file from the URL http://pastebin.com/raw/CxaWmPrX, and save it as "test".
6
+
"wget http://example.org/test.lua/?foo=bar#qzu" will download the file from the URL http://example.org/test.lua/?foo=bar#qzu and save it as "test.lua"
7
+
"wget http://example.org/" will download the file from the URL http://example.org and save it as "example.org"
0 commit comments