feat: refactor pagination implementation
This commit is contained in:
parent
ee77555c32
commit
da793fd1cc
196 changed files with 2498 additions and 36 deletions
20
src/posts/2015/updating-osx-from-command-line.md
Normal file
20
src/posts/2015/updating-osx-from-command-line.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
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
|
||||
```
|
Reference in a new issue