#!/usr/bin/env zsh # Set global variables PROGNAME=$(basename "$0") VERSION='1.0.0' ## # Check for a dependancy # # @param 1 Command to check ## dependancy() { hash "$1" &>/dev/null || error "$1 must be installed" } ## # Print help menu # # @param 1 exit code ## function printHelpAndExit { cat <