General format for command 'run':
    vitis run -e|-v <input data> [options]

---

vitis run -e <expression> [options]
    Executes files from expression result, if they are executable.

The '-n' option is used to select one or a series of files.
If a single number follows '-n', one file will be executed.
You may also provide an expression consisting of file indices
and ranges separated by commas (no spaces).
Ranges are specified with a hyphen (-).
Example:
    vitis run -e Installers -n 1
        Executes the first file from 'Installers'.
        This is useful when you already know the full list of files,
        for example after running 'vitis show -c Installers'.

The --sort=<sorting> option specifies the sorting type:
    --sort=extension - sort by file extension;
    --sort=name      - sort by file name (default);
    --sort=none      - no sorting;
    --sort=size      - sort by file size;
    --sort=time      - sort by file modification time;
    --sort=atime     - sort by file access time;
    --sort=mix       - random order.

The '--reverse' or '-r' option reverses the sort order.

With the '--show' option, the file list display is enabled,
as with the 'vitis show' command.

---

vitis run -v <file> ... [options]
    Executes the specified executable files
    relative to the Vitis mount point.
    Of the above options, only '--show' works.
