Skip to content

Instantly share code, notes, and snippets.

@JacobDorman
Last active June 9, 2016 07:42
Show Gist options
  • Save JacobDorman/e5171c567fc3ddaab708f000c4b70e90 to your computer and use it in GitHub Desktop.
Save JacobDorman/e5171c567fc3ddaab708f000c4b70e90 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
#TODO add alfred workflows
{
echo "==== Homebrew Formulae ===="
brew leaves
echo
echo "==== Ruby Gems ===="
gem list
echo
echo "==== Global Node modules ===="
npm ls -g --depth=0
echo
echo "==== Global Composer packages ===="
composer global show
echo
echo "==== Python packages ===="
pip list
echo
} | tee allthethings.txt 2>&1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment