Command reference
Here you will find the list of commands available in Zirkul Agent, any command can be used in your CICD Jobs.
Zirkul agent can be used as an interactive standalone command line application if you run it with no arguments:
Once the agent is loaded, you will see the terminal mode is changed to zirkul#
which means, Zirkul is ready for receiving commands.
Command line arguments
Command line arguments are also available, you can use -h or --help for getting the list of arguments available:
Commands basics
Some important basic considerations:
Commands and arguments need to be separated by spaces.
zirkul# command argument
Text literals need to be enclosed between single or double quotes:
zirkul# print "Hello world"
Multiline text is also supported as follows:
zirkul# print `multiline text another line`
There are locations or configuration modes for configuring settings or plugins, when you're inside a configuration mode the terminal symbol will chance indicating the location you're currently in:
zirkul# server zirkul(server)#
For getting out of a configuration mode, use the command
exit
or '-
'zirkul(server)# exit zirkul#
If you need help on the commands available in any mode, use the command
help
or simply '?
'Exit the application with
exit
orquit
.
Scripts can be created with the list of commands you want the agent to execute, this is useful for automation purposes, let's create a simple script 'script.txt':
Now we can run the script with the following command:
Last updated