github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/docs/commands/version.md (about)

     1  # `version`
     2  
     3  > Get Murex version
     4  
     5  ## Description
     6  
     7  Returns Murex version number
     8  
     9  ## Usage
    10  
    11  ```
    12  version [ flags ] -> <stdout>
    13  ```
    14  
    15  ## Examples
    16  
    17  Ran without any parameters
    18  
    19  ```
    20  » version
    21  murex: 0.51.1200 BETA
    22  ```
    23  
    24  Ran with the `--no-app-name` parameter
    25  
    26  ```
    27  » version --no-app-name
    28  0.51.1200 BETA
    29  ```
    30  
    31  Ran with the `--short` parameter
    32  
    33  ```
    34  » version --short
    35  0.51
    36  ```
    37  
    38  ## Flags
    39  
    40  * `--no-app-name`
    41      Returns full version string minus app name
    42  * `--short`
    43      Returns only the major and minor version as a `num` data-type
    44  
    45  ## See Also
    46  
    47  * [`args` ](../commands/args.md):
    48    Command line flag parser for Murex shell scripting
    49  * [`autocomplete`](../commands/autocomplete.md):
    50    Set definitions for tab-completion in the command line
    51  * [`config`](../commands/config.md):
    52    Query or define Murex runtime settings
    53  * [`function`](../commands/function.md):
    54    Define a function block
    55  * [`murex-parser` ](../commands/murex-parser.md):
    56    Runs the Murex parser against a block of code 
    57  * [`private`](../commands/private.md):
    58    Define a private function block
    59  * [`runtime`](../commands/runtime.md):
    60    Returns runtime information on the internal state of Murex
    61  * [`source`](../commands/source.md):
    62    Import Murex code from another file of code block
    63  
    64  <hr/>
    65  
    66  This document was generated from [builtins/core/management/version_doc.yaml](https://github.com/lmorg/murex/blob/master/builtins/core/management/version_doc.yaml).