The software bundles 2 command line programs:
-
jormungandr
, the node; -
jcli
, the Jormungandr Command Line Interface, a low level program that interact with the node.
This is the recommended method. Releases are available at the release section.
Jormungandr’s source code is available at github. Follow the instructions to build the software from source.
All commands come with usage help, find out by adding --help
or -h
to the end of the command.
jcli
has a feature which allows you to generate auto completion:
jcli auto-completion bash ${HOME}/.bash_completion.d
Supported shells are: bash
, fish
, zsh
, powershell
and elvish
.
Ensure ${HOME}/.bash_completion.d
directory exists on your hard disk.
In order to use auto completion you still need to:
source ${HOME}/.bash_completion.d/jcli.bash
You can also put it in your ${HOME}/.bashrc
so that it’s loaded whenever you enter your shell.