ARM64
1
curl -LO "https://acli.atlassian.com/linux/latest/acli_linux_arm64/acli"
x86-64
1
curl -LO "https://acli.atlassian.com/linux/latest/acli_linux_amd64/acli"
acli
binary executable.1
chmod +x ./acli
You can now use acli
from this directory.
1
./acli --help
acli
binary (requires root access).1
sudo 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
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
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
Rate this page: