Created
April 10, 2019 06:30
-
-
Save shawjia/54b615b357f999267a36f1c2eb36fc90 to your computer and use it in GitHub Desktop.
macOS backup
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
BACKUP_DIR=~/Documents/settings/app-list/`hostname` | |
mkdir -p $BACKUP_DIR | |
cd $BACKUP_DIR | |
# backup brew | |
/usr/local/bin/brew bundle dump --force | |
# back node packages | |
source ~/.nvm/nvm.sh | |
/usr/local/bin/yarn global list > yarn-global-list.txt | |
npm list -g > npm-global-list.txt | |
ls -1 /Applications > all-apps.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment