2022-10-21 17:16:00 +02:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [flags](./bitburner.ns.flags.md)
|
|
|
|
|
|
|
|
## NS.flags() method
|
|
|
|
|
|
|
|
Parse command line flags.
|
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Signature:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
flags(schema: [string, string | number | boolean | string[]][]): { [key: string]: ScriptArg | string[] };
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
|
|
|
| schema | \[string, string \| number \| boolean \| string\[\]\]\[\] | |
|
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Returns:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
{ \[key: string\]: [ScriptArg](./bitburner.scriptarg.md) \| string\[\] }
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
RAM cost: 0 GB
|
|
|
|
|
2022-11-20 18:07:22 +01:00
|
|
|
Allows Unix-like flag parsing.
|
2022-10-21 17:16:00 +02:00
|
|
|
|
2024-05-17 13:57:10 +02:00
|
|
|
We support 2 forms:
|
|
|
|
|
|
|
|
- Short form: the flag contains only 1 character, e.g. -v.
|
|
|
|
|
|
|
|
- Long form: the flag contains more than 1 character, e.g. --version.
|
|
|
|
|
2022-10-21 17:16:00 +02:00
|
|
|
## Example
|
|
|
|
|
|
|
|
|
2023-02-14 07:32:01 +01:00
|
|
|
```js
|
2022-10-21 17:16:00 +02:00
|
|
|
export async function main(ns) {
|
|
|
|
const data = ns.flags([
|
|
|
|
['delay', 0], // a default number means this flag is a number
|
|
|
|
['server', 'foodnstuff'], // a default string means this flag is a string
|
|
|
|
['exclude', []], // a default array means this flag is a default array of string
|
|
|
|
['help', false], // a default boolean means this flag is a boolean
|
2024-05-17 13:57:10 +02:00
|
|
|
['v', false], // short form
|
2022-10-21 17:16:00 +02:00
|
|
|
]);
|
|
|
|
ns.tprint(data);
|
|
|
|
}
|
|
|
|
|
2024-05-28 00:30:32 +02:00
|
|
|
// [home /]> run example.js
|
2024-05-17 13:57:10 +02:00
|
|
|
// {"_":[],"delay":0,"server":"foodnstuff","exclude":[],"help":false,"v":false}
|
2024-05-28 00:30:32 +02:00
|
|
|
// [home /]> run example.js --delay 3000
|
2024-05-17 13:57:10 +02:00
|
|
|
// {"_":[],"delay":3000,"server":"foodnstuff","exclude":[],"help":false,"v":false}
|
2024-05-28 00:30:32 +02:00
|
|
|
// [home /]> run example.js --delay 3000 --server harakiri-sushi
|
2024-05-17 13:57:10 +02:00
|
|
|
// {"_":[],"delay":3000,"server":"harakiri-sushi","exclude":[],"help":false,"v":false}
|
2024-05-28 00:30:32 +02:00
|
|
|
// [home /]> run example.js --delay 3000 --server harakiri-sushi hello world
|
2024-05-17 13:57:10 +02:00
|
|
|
// {"_":["hello","world"],"delay":3000,"server":"harakiri-sushi","exclude":[],"help":false,"v":false}
|
2024-05-28 00:30:32 +02:00
|
|
|
// [home /]> run example.js --delay 3000 --server harakiri-sushi hello world --exclude a --exclude b
|
2024-05-17 13:57:10 +02:00
|
|
|
// {"_":["hello","world"],"delay":3000,"server":"harakiri-sushi","exclude":["a","b"],"help":false,"v":false}
|
2024-05-28 00:30:32 +02:00
|
|
|
// [home /]> run example.js --help
|
2024-05-17 13:57:10 +02:00
|
|
|
// {"_":[],"delay":0,"server":"foodnstuff","exclude":[],"help":true,"v":false}
|
2024-05-28 00:30:32 +02:00
|
|
|
// [home /]> run example.js -v
|
2024-05-17 13:57:10 +02:00
|
|
|
// {"_":[],"delay":0,"server":"foodnstuff","exclude":[],"help":false,"v":true}
|
2022-10-21 17:16:00 +02:00
|
|
|
```
|
|
|
|
|