mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 02:03:58 +01:00
41 lines
1.8 KiB
ReStructuredText
41 lines
1.8 KiB
ReStructuredText
|
flags() Netscript Function
|
||
|
============================
|
||
|
|
||
|
.. js:function:: flags(data)
|
||
|
|
||
|
:RAM cost: 0 GB
|
||
|
:param data array of pairs of strings: Flags definition.
|
||
|
:returns: Object containing all the flags that were parsed or default.
|
||
|
|
||
|
The flag definition is an array of pairs of values, the first value is the
|
||
|
name of the flag, the 2nd value is the default value for that flag.
|
||
|
|
||
|
The return object is a map containing flag names to the value. It also
|
||
|
contains the special field '_' which contains all arguments that were not flags.
|
||
|
|
||
|
Example:
|
||
|
|
||
|
.. code-block:: javascript
|
||
|
|
||
|
/* example.script
|
||
|
var data = 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
|
||
|
]);
|
||
|
tprint(data);
|
||
|
*/
|
||
|
[home ~/]> run example.script
|
||
|
{"_":[],"delay":0,"server":"foodnstuff"}
|
||
|
[home ~/]> run example.script --delay 3000
|
||
|
{"_":[],"server":"foodnstuff","delay":3000}
|
||
|
[home ~/]> run example.script --delay 3000 --server harakiri-sushi
|
||
|
{"_":[],"delay":3000,"server":"harakiri-sushi"}
|
||
|
[home ~/]> run example.script --delay 3000 --server harakiri-sushi hello world
|
||
|
{"_":["hello","world"],"delay":3000,"server":"harakiri-sushi"}
|
||
|
[home ~/]> run example.script --delay 3000 --server harakiri-sushi hello world --exclude a --exclude b
|
||
|
{"_":["hello","world"],"delay":3000,"server":"harakiri-sushi","exclude":["a","b"]}
|
||
|
[home ~/]> run example.script --help
|
||
|
{"_":[],"delay":0,"server":"foodnstuff","exclude":[],"help":true}
|