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

44 lines
976 B
Markdown
Raw Normal View History

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [NS](./bitburner.ns.md) &gt; [ps](./bitburner.ns.ps.md)
## NS.ps() method
List running scripts on a server.
**Signature:**
```typescript
ps(host?: string): ProcessInfo[];
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| host | string | _(Optional)_ Host address of the target server. If not specified, it will be the current servers IP by default. |
**Returns:**
[ProcessInfo](./bitburner.processinfo.md)<!-- -->\[\]
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.
2023-04-28 20:19:30 +02:00
## Example
2023-04-28 20:19:30 +02:00
```js
const ps = ns.ps("home");
for (const script of ps) {
2023-04-28 20:19:30 +02:00
ns.tprint(`${script.filename} ${script.threads}`);
ns.tprint(script.args);
}
```