See the releases page for available binaries.
$ curl -L https://github.com/sniptt-official/ots/releases/download/v0.1.0/ots_0.1.0_darwin_amd64.tar.gz -o ots.tar.gz
$ sudo mkdir -p /usr/local/ots-cli
$ sudo tar -C /usr/local/ots-cli -xvf ots.tar.gz
$ sudo ln -sf /usr/local/ots-cli/ots /usr/local/bin/ots
$ rm ots.tar.gz
Assuming /usr/local/bin
is on your PATH
, you can now run:
$ ots --version
ots version 0.1.0
- Find the folder that contains the symlink to the main binary.
$ which ots
/usr/local/bin/ots
- Using that information, run the following command to find the installation folder that the symlink points to.
$ ls -l /usr/local/bin/ots
lrwxr-xr-x 1 root admin 26 15 Jul 16:00 /usr/local/bin/ots -> /usr/local/ots-cli/ots
- Delete the symlink in the first folder. If your user account already has write permission to this folder, you don't need to use
sudo
.
$ sudo rm /usr/local/bin/ots
- Delete the main installation folder.
$ rm -rf /usr/local/ots-cli