Skip to content

Instantly share code, notes, and snippets.

View helpful-fox-senko-san's full-sized avatar

Senko helpful-fox-senko-san

View GitHub Profile
#!/bin/sh
set -e
# You can change the install path here if you like
TT_PATH=/opt/tt
command -v tar > /dev/null || { echo "'tar' command is required"; exit 1; }
command -v wget > /dev/null || { echo "'wget' command is required"; exit 1; }
command -v unzip > /dev/null || { echo "'unzip' command is required"; exit 1; }