Skip to content

Instantly share code, notes, and snippets.

View est77's full-sized avatar

Esteban Tovagliari est77

View GitHub Profile
#!/bin/bash
# We need the TAB character for SED (Mac OS X sed does not understand \t)
TAB="$(printf '\t')"
function abort {
echo "$(tput setaf 1)$1$(tput sgr0)"
exit 1
}