Skip to content

Instantly share code, notes, and snippets.

@jacobfg
jacobfg / README.md
Created February 24, 2021 05:54
Blank stub for Homebrew formula's without files

Stub placeholder

@jacobfg
jacobfg / README.md
Last active March 27, 2020 06:12
Empty Homebrew package stub

Empty README

@jacobfg
jacobfg / brew-purge
Last active March 20, 2020 04:02
Script to remove a brew package all dependancies
#!/bin/bash
# Usage: brew purge formula
#
# Removes the package(s) and all dependancies.
#
if [[ -z "$@" ]] ; then
brew purge --help
exit 1
fi