Skip to content

Instantly share code, notes, and snippets.

@bdougherty
Last active April 1, 2022 05:54
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdougherty/94150da8559cd4d7998a537b381cd00c to your computer and use it in GitHub Desktop.
Save bdougherty/94150da8559cd4d7998a537b381cd00c to your computer and use it in GitHub Desktop.
Play the Benny Hill theme song while installing npm modules

Add the function somewhere to your dotfiles. Works better if you npm install -g benny-hill first.

function npm() {
if [[ "$1" == "i" ]] || [[ "$1" == "install" ]]; then
npx benny-hill npm "$@"
return
fi
command npm "$@"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment