Last active
June 9, 2016 07:42
-
-
Save JacobDorman/e5171c567fc3ddaab708f000c4b70e90 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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