Each CLI version will only be supported 6 months after release. We recommend regularly updating to the latest CLI version to benefit from new features and improvements.
Use package management to install, update, and remove software packages by using either of the following methods:
Open a terminal window and enter the command below to install:
1 2sudo apt-get install -y wget gnupg2
1 2sudo mkdir -p -m 755 /etc/apt/keyrings wget -nv -O- https://acli.atlassian.com/gpg/public-key.asc | sudo gpg --dearmor -o /etc/apt/keyrings/acli-archive-keyring.gpg sudo chmod go+r /etc/apt/keyrings/acli-archive-keyring.gpg echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/acli-archive-keyring.gpg] https://acli.atlassian.com/linux/deb stable main" | sudo tee /etc/apt/sources.list.d/acli.list > /dev/null
1 2sudo apt update sudo apt install -y acli
Open a terminal window and enter the command below to install:
1 2sudo yum install -y yum-utils
1 2sudo yum-config-manager --add-repo https://acli.atlassian.com/linux/rpm/acli.repo
1 2sudo yum install -y acli
Open a terminal window and enter the command below to install:
ARM64
1 2curl -LO "https://acli.atlassian.com/linux/latest/acli_linux_arm64/acli"
x86-64
1 2curl -LO "https://acli.atlassian.com/linux/latest/acli_linux_amd64/acli"
acli
binary executable:1 2chmod +x ./acli
You can now use acli
from this directory:
1 2./acli --help
acli
binary (requires root access):1 2sudo install -o root -g root -m 0755 acli /usr/local/bin/acli
If you do not have root access on the target system, you can still install acli to the ~/.local/bin
directory:
1 2mkdir -p ~/.local/bin mv ./acli ~/.local/bin/acli # and then append (or prepend) ~/.local/bin to $PATH
You can now use acli
globally:
1 2acli --help
Rate this page: