Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

update brew

First update all package definitions (formulae) and Homebrew itself:
brew update

Upgrade everything with:
brew upgrade

You can now list which of your installed packages (kegs) are outdated with:
brew outdated
Comment

brew upgrade casks

for cask in `brew list --cask`; do
	brew upgrade --cask $cask;
done

# Or this shorthand
brew upgrade --cask $(brew list --cask)
Comment

brew upgrade

brew update # Get most recent versions of available formulae and casks
brew outdated # Lists the outdated installed formulae and casks
brew upgrade # Upgrade the packages listed by brew outdated
brew upgrade <formula or cask> # Upgrade a specific formula or cask
Comment

brew update

#This updates homebrew itself.
brew update
#You can then upgrade all individual packages and formula with the following:
brew upgrade
Comment

PREVIOUS NEXT
Code Example
Shell :: where is path on klai linux 
Shell :: kubernetes on windows 10 
Shell :: webpack uninstall npm 
Shell :: pyinstaller exe version info 
Shell :: git: create and remove git alias command 
Shell :: tensorflow install size 
Shell :: tail -f linux last 100 lines 
Shell :: list dir by date linux 
Shell :: how to exit docker 
Shell :: npm i vs npm ci 
Shell :: ubuntu send input to screen 
Shell :: find rm files older than 30 days 
Shell :: install rethinkdb on ubuntu 
Shell :: ubuntu open task manager 
Shell :: how to install fish in debian 
Shell :: git https to ssh 
Shell :: difference between two files linux 
Shell :: install termius ubuntu 
Shell :: linux install requirements.txt 
Shell :: laravel install by composer 
Shell :: bash split string into array 
Shell :: pip install osgeo 
Shell :: git deinit repo 
Shell :: video to gif 
Shell :: osx stop httpd 
Shell :: bash tokens in variable 
Shell :: bat cd to directory 
Shell :: pass parameters to bash script 
Shell :: install node_modules 
Shell :: create directory linux 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =