Migrate Brew Cask Move the casks to the new location sudo mv /opt/homebrew-cask/Caskroom /usr/local Retrieve the list of installed Casks brew cask list Loop each Cask and reinstall for cask in $(brew cask list); do brew cask install $cask --force; done