enpxio install¶
Prints a shell script to stdout
which you can use to update the enpxio
CLI to the latest or a specific version.
Synopsis¶
enpxio install
[-v VERSION
]
Flags¶
-v, --version VERSION
- Specify a specific version to install (default:
latest
).
Must be SemVer compatible.
Examples¶
To install latest version:
enpxio install | sudo sh
If you want to pass parameters to the shell script you can do this like this:
enpxio install | sudo sh -s -- -d
To install a specific version:
enpxio install --version 0.4.0 | sudo sh