#!/usr/bin/env bash requireCommand() { if ! command -v "$1" &> /dev/null then echo "$1 is required. Please install it and then try again." exit 1 fi }