Difference between revisions of "Copy"
From ComputerCraft Wiki
(Created page with "{{Stub|Needs more info about the program itself, perhaps an image?}} Copy is a built in program for computers and turtles that will copy the specified file i...") |
m |
||
Line 1: | Line 1: | ||
{{Stub|Needs more info about the program itself, perhaps an image?}} | {{Stub|Needs more info about the program itself, perhaps an image?}} | ||
− | Copy is a [[CraftOS Shell|built in program for computers and turtles]] that will copy the specified | + | Copy is a [[CraftOS Shell|built in program for computers and turtles]] that will copy the specified source into the specified destination. If a different filename is specified, it will rename the copy as well. It will not create non-existant directories however. |
Note: This program can also be used with the linux-like command 'cp' | Note: This program can also be used with the linux-like command 'cp' |
Revision as of 17:23, 16 April 2014
This page is a stub. Please help us by expanding it.
|
Copy is a built in program for computers and turtles that will copy the specified source into the specified destination. If a different filename is specified, it will rename the copy as well. It will not create non-existant directories however.
Note: This program can also be used with the linux-like command 'cp'
Example | |
Copies /foo to /bar | |
Code |
copy /foo /bar |