bitburner-src/markdown/bitburner.ns.scp_1.md
Olivier Gagnon 43fc5dfd48 work on doc
2021-10-30 12:34:14 -04:00

1.7 KiB
Raw Blame History

Home > bitburner > NS > scp

NS.scp() method

Copies a script or literature (.lit) file(s) to another server. The files argument can be either a string specifying a single file to copy, or an array of strings specifying multiple files to copy.

Signature:

scp(
    files: string | ReadonlyArray<string>,
    source: Host,
    // tslint:disable-next-line:unified-signatures
    destination: Host,
  ): boolean;

Parameters

Parameter Type Description
files string | ReadonlyArray<string> Filename or an array of filenames of script/literature files to copy.
source Host Host or IP of the source server, which is the server from which the file will be copied. This argument is optional and if its omitted the source will be the current server.
destination Host Host or IP of the destination server, which is the server to which the file will be copied.

Returns:

boolean

True if the script/literature file is successfully copied over and false otherwise. If the files argument is an array then this function will return true if at least one of the files in the array is successfully copied.

Remarks

0.6 GB

Example 1

//Copies foo.lit from the helios server to the home computer:
scp("foo.lit", "helios", "home");

Example 2

//Tries to copy three files from rothman-uni to home computer:
files = ["foo1.lit", "foo2.script", "foo3.script"];
scp(files, "rothman-uni", "home");