Created
January 27, 2020 17:40
-
-
Save emjayoh/7928f3acb52d9a03c494a6e63fee5002 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| npm list -g --depth=0 > ~/.dotfiles/packages/npm || echo "npm failed" | |
| gem list > ~/.dotfiles/packages/gem || echo "gem failed" | |
| pip list > ~/.dotfiles/packages/pip || echo "pip failed" | |
| pip3 list > ~/.dotfiles/packages/pip3 || echo "pip3 failed" | |
| #sudo find / -iname *.app > ~/.dotfiles/packages/app-list || echo "app list failed" | |
| # `brew bundle dump` [`--force`] [`--describe`] [`--no-restart`] [`--file=`<path>|`--global`] | |
| brew bundle dump --force --describe --file=~/.dotfiles/packages/brew || echo "brew failed" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment