Skip to content

Instantly share code, notes, and snippets.

@shawjia
Created April 10, 2019 06:30
Show Gist options
  • Save shawjia/54b615b357f999267a36f1c2eb36fc90 to your computer and use it in GitHub Desktop.
Save shawjia/54b615b357f999267a36f1c2eb36fc90 to your computer and use it in GitHub Desktop.
macOS backup
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