DiegoC.

Sou um Gerente de Engenharia apaixonado pela intersecção entre tecnologia e pessoas. Meu objetivo é ajudar equipes de tecnologia a alcançar todo o seu potencial.

Tenho grande interesse em liderança em engenharia, gerenciamento de pessoas, engenharia de software, além de inclusão e diversidade. Atualmente, sou Gerente de Engenharia na Nubank e estou sempre aberto a compartilhar minhas ideias e experiências sobre esses temas.

Se você quiser saber mais sobre mim, confira os links abaixo!

Updating all your casks via Homebrew on macOS

I’m addicted to maintaining all my programs updated, and the best way to do this in macOS is with the help of dependency managers like Homebrew, when using it to install our software you can write small scripts to automate this process.

In Homebrew the command to update all software is brew upgrade --cask but it’s not always successful to find updates for all applications, to fix this problem we must execute this upgrade command for every installed software.

Here’s the tip! To avoid having to run upgrade to each item manually, run this command in your terminal:

brew list --cask | xargs brew upgrade --cask