mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-23 08:03:48 +01:00
commit
76d67fdba5
7
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
7
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@ -4497,6 +4497,13 @@ export interface NS extends Singularity {
|
|||||||
* files = ["foo1.lit", "foo2.script", "foo3.script"];
|
* files = ["foo1.lit", "foo2.script", "foo3.script"];
|
||||||
* scp(files, "rothman-uni", "home");
|
* scp(files, "rothman-uni", "home");
|
||||||
* ```
|
* ```
|
||||||
|
* @example
|
||||||
|
* ```ts
|
||||||
|
* //ns2, copies files from home to a target server
|
||||||
|
* const server = ns.args[0];
|
||||||
|
* const files = ["hack.js","weaken.js","grow.js"];
|
||||||
|
* await ns.scp(files, "home", server);
|
||||||
|
* ```
|
||||||
* @param files - Filename or an array of filenames of script/literature files to copy.
|
* @param files - Filename or an array of filenames of script/literature files to copy.
|
||||||
* @param source - Host of the source server, which is the server from which the file will be copied. This argument is optional and if it’s omitted the source will be the current server.
|
* @param source - Host of the source server, which is the server from which the file will be copied. This argument is optional and if it’s omitted the source will be the current server.
|
||||||
* @param destination - Host of the destination server, which is the server to which the file will be copied.
|
* @param destination - Host of the destination server, which is the server to which the file will be copied.
|
||||||
|
Loading…
Reference in New Issue
Block a user