Files
bitburner-src/markdown/bitburner.ns.ps.md

1.1 KiB

Home > bitburner > NS > ps

NS.ps() method

List running scripts on a server.

Signature:

ps(host?: string): ProcessInfo[];

Parameters

Parameter

Type

Description

host

string

(Optional) Hostname/IP of the target server. Optional. Defaults to the server the calling script is running on.

Returns:

ProcessInfo[]

Array with general information about all scripts running on the specified target server.

Remarks

RAM cost: 0.2 GB

Returns an array with general information about all scripts running on the specified target server.

Example

const ps = ns.ps("home");
for (const script of ps) {
  ns.tprint(`${script.filename} ${script.threads}`);
  ns.tprint(script.args);
}