Last active
June 25, 2021 17:12
-
-
Save jazzqi/a3af8045ef39b050347a200d12c07d02 to your computer and use it in GitHub Desktop.
Export apps installed by brew, brew cask and Mac App Store(using mas)
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
#!/bin/bash | |
echo -e '#!/bin/bash\n' > list.sh | |
echo -e '########### Brew Install List ###########' >> list.sh | |
brew leaves | sed 's/^/brew install /' >> list.sh && | |
echo -e '\n########### Brew Cask Install List ###########' >> list.sh && | |
brew cask list | sed 's/^/brew cask install /' >> list.sh && | |
echo -e '\n########### Mac App Store Install List ###########' >> list.sh && | |
mas list | sed 's/\ /\ \ #\ /' | sed 's/^/mas install /' >> list.sh | |
echo -e '\necho "And done..."' >> list.sh | |
echo "And done..." |
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
#!/bin/bash | |
########### Brew Install List ########### | |
brew install aria2 | |
brew install axel | |
brew install cmake | |
brew install cmatrix | |
brew install cowsay | |
brew install curl | |
brew install dshb | |
brew install fortune | |
brew install gnupg | |
brew install go | |
brew install gobject-introspection | |
brew install htop | |
brew install jansson | |
brew install libyaml | |
brew install mackup | |
brew install mas | |
brew install midnight-commander | |
brew install mpv | |
brew install ncdu | |
brew install sendemail | |
brew install telnet | |
brew install thefuck | |
brew install tmux | |
brew install wget | |
brew install yarn | |
brew install zsh | |
########### Brew Cask Install List ########### | |
brew cask install boostnote | |
brew cask install caffeine | |
brew cask install cheatsheet | |
brew cask install daedalus | |
brew cask install docker | |
brew cask install firefox-beta | |
brew cask install font-dejavu-sans-mono-for-powerline | |
brew cask install font-fira-code | |
brew cask install font-fira-mono-for-powerline | |
brew cask install font-hack | |
brew cask install font-hack-nerd-font | |
brew cask install font-inconsolata | |
brew cask install font-menlo-for-powerline | |
brew cask install handshaker | |
brew cask install hyper | |
brew cask install iina | |
brew cask install imageoptim | |
brew cask install jadengeller-helium | |
brew cask install keka | |
brew cask install keybase | |
brew cask install kindle | |
brew cask install mounty | |
brew cask install neteasemusic | |
brew cask install postman | |
brew cask install resilio-sync | |
brew cask install shadowsocksx-ng | |
brew cask install signal | |
brew cask install sony-remoteplay | |
brew cask install sourcetree | |
brew cask install syncthing-app | |
brew cask install teamviewer | |
brew cask install telegram | |
brew cask install torbrowser | |
brew cask install typora | |
brew cask install visual-studio-code | |
brew cask install vnc-viewer | |
brew cask install yujitach-menumeters | |
########### Mac App Store Install List ########### | |
mas install 664513913 # FutuNiuniu (4.33.2) | |
mas install 1278508951 # Trello (2.10.7) | |
mas install 441258766 # Magnet (2.4) | |
mas install 445189367 # PopClip (1.5.8) | |
mas install 921458519 # DrCleaner (3.3.6) | |
mas install 1257711898 # DeskCover (1.3) | |
mas install 443987910 # 1Password (6.8.8) | |
mas install 1284863847 # Unsplash Wallpapers (1.1.1) | |
mas install 973134470 # Be Focused (1.7.4) | |
mas install 1165145870 # GF-Trader (6.3.2) | |
mas install 954188948 # MWeb (2.3.0) | |
mas install 409201541 # Pages (7.2) | |
mas install 880001334 # Reeder (3.2.1) | |
mas install 1039633667 # Irvue (2.7) | |
mas install 946812450 # Binaural (1.8) | |
mas install 829912893 # MathStudio (7.3.2) | |
mas install 1356055347 # 印象笔记 (8.2.0) | |
mas install 1331400450 # CoinMarket (1.2.2) | |
echo "And done..." |
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
#!/bin/bash | |
brew tap homebrew/cask-fonts | |
brew tap homebrew/cask-drivers | |
brew tap homebrew/cask-versions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment