homebrewで移行先macへ簡単にアプリを移動させる


macをCatalinaにクリーンインストールするときなどに使うと便利です。

// 移行元でBrewfileを作っておく。githubなどにあげておく
brew bundle dump

// 移行先macでの作業。ここから以降は移行先macでの作業
// fileを作って書き込む
touch Brewfile

vim Brewfile

Brewfileにコピペする

Brewfile例
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/core"
brew "git"
cask "cmd-eikana"
cask "deepl"
cask "docker"
cask "libreoffice"
cask "mapture"
cask "rubymine"
cask "sublime-text"
// homebrew install
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

// インストール
brew bundle

参考サイト
macOS用パッケージマネージャー — Homebrew

GitHub - Homebrew/homebrew-bundle: 📦 Bundler for non-Ruby dependencies from Homebrew, Homebrew Cask and the Mac App Store.