From 2e66020a9ca5261c67858f7378f39684827bc7ca Mon Sep 17 00:00:00 2001 From: Colin P. McCabe Date: Tue, 5 Jul 2022 16:36:03 -0700 Subject: [PATCH] Add nero.sh --- nero.sh | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 55 insertions(+), 0 deletions(-) create mode 100755 nero.sh diff --git a/nero.sh b/nero.sh new file mode 100755 index 0000000..a23cab5 --- /dev/null +++ b/nero.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +die() { + echo $@ + exit 1 +} + +my_uname=$(uname -a) +case "${my_uname}" in + Darwin*) ;; + *)die "This script only works on MacOS" +esac + +usage() { + cat <