This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/posts/2015/updating-osx-from-command-line.md

20 lines
534 B
Markdown

---
date: '2015-09-05'
draft: false
title: Update OS X from the command line
tags: ['macOS']
---
If you don't want to bother dealing with the Mac App Store you can check for any recent updates for OS X from the command:
```bash
sudo softwareupdate -i -a
```
<!-- excerpt -->
You can also combine this with commands to run Homebrew and Cask updates (allowing you to quickly update things quickly and efficiently):
```bash
sudo softwareupdate -i -a && brew update && brew upgrade brew-cask && brew cleanup && brew cask cleanup
```