Difference between revisions of "Pastebin (program)"
From ComputerCraft Wiki
(Created) |
Bomb Bloke (Talk | contribs) m (Links.) |
||
Line 1: | Line 1: | ||
− | + | '''pastebin''' is a program available on all ComputerCraft systems since mod version 1.31. It makes use of the [[HTTP_(API)|http API]] to connect to, as the name implies, [http://pastebin.com the Pastebin website] (the script hidden if said API is disabled in [[ComputerCraft.cfg]]). It can be used to either download and save scripts, run them on the fly, or upload them to the pastebin servers. | |
{{Example | {{Example | ||
− | |desc=Download the code under Pastebin id WmFHmuZq and save it as 'LyqydOS'. | + | |desc=Download the code under [http://pastebin.com/WmFHmuZq Pastebin id WmFHmuZq] and save it as 'LyqydOS'. |
|code=pastebin get WmFHmuZq LyqydOS | |code=pastebin get WmFHmuZq LyqydOS | ||
}} | }} | ||
Line 10: | Line 10: | ||
}} | }} | ||
{{Example | {{Example | ||
− | |desc=Download the code under | + | |desc=Download the code under [http://pastebin.com/WmFHmuZq Pastebin id WmFHmuZq], run it and then delete the downloaded file. (Useful for installers.) |
|code=pastebin run WmFHmuZq | |code=pastebin run WmFHmuZq | ||
}} | }} | ||
+ | |||
+ | [[Category:Programs]] |
Revision as of 14:21, 19 October 2015
pastebin is a program available on all ComputerCraft systems since mod version 1.31. It makes use of the http API to connect to, as the name implies, the Pastebin website (the script hidden if said API is disabled in ComputerCraft.cfg). It can be used to either download and save scripts, run them on the fly, or upload them to the pastebin servers.
Example | |
Download the code under Pastebin id WmFHmuZq and save it as 'LyqydOS'. | |
Code |
pastebin get WmFHmuZq LyqydOS |
Example | |
Download the code under Pastebin id WmFHmuZq, run it and then delete the downloaded file. (Useful for installers.) | |
Code |
pastebin run WmFHmuZq |