github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/docs/variables/murex_argv.md (about) 1 # `MUREX_ARGV` (json) 2 3 > Array of the command name and parameters passed to the current shell 4 5 ## Description 6 7 `MUREX_ARGV` returns an array of the command name and parameters passed to 8 the current running Murex shell 9 10 11 12 ## Examples 13 14 ``` 15 ยป murex -trypipe -c '$MUREX_ARGV' 16 [ 17 "murex", 18 "-trypipe", 19 "-c", 20 "$MUREX_ARGV" 21 ] 22 ``` 23 24 ## Synonyms 25 26 * `murex_argv` 27 * `MUREX_ARGV` 28 * `MUREX_ARGS` 29 30 31 ## See Also 32 33 * [Array (`@`) Token](../parser/array.md): 34 Expand values as an array 35 * [`ARGV` (json)](../variables/argv.md): 36 Array of the command name and parameters within a given scope 37 * [`MUREX_EXE` (path)](../variables/murex_exe.md): 38 Absolute path to running shell 39 * [`PARAMS` (json)](../variables/params.md): 40 Array of the parameters within a given scope 41 * [`json`](../types/json.md): 42 JavaScript Object Notation (JSON) 43 44 <hr/> 45 46 This document was generated from [gen/variables/MUREX_ARGV_doc.yaml](https://github.com/lmorg/murex/blob/master/gen/variables/MUREX_ARGV_doc.yaml).