Skip to content
This repository has been archived by the owner on Aug 19, 2023. It is now read-only.

Latest commit

 

History

History
31 lines (22 loc) · 1011 Bytes

brew-cask.md

File metadata and controls

31 lines (22 loc) · 1011 Bytes
description
The Homebrew cask update module

Brew cask

{% hint style="info" %} This extension of Homebrew allows you to update macOS applications installed using Homebrew.

Find out how to install the package manager here. {% endhint %}

Understanding the update command

The brew-cask update module consists of one command (brew cu) with multiple flags:

  • -a : Update all out of date applications
  • -y : Silently answer 'yes' to update prompts
  • -f : Update all applications to their latest versions
  • --no-quarantine : Disable macOS Gatekeeper on this app
  • --cleanup : Clean up the cask folder when
# Brew-cask update commands.
{ echo "Brew Cask"; echo ""; brew cu -ayf --no-quarantine --cleanup; } >> $LOG
catcher Brew-cask
line

To add different options to the module read the Homebrew cask documentation. To disable this module comment out the code above.