25 lines
441 B
Plaintext
25 lines
441 B
Plaintext
REM opens the Terminal application and runs a series of commands
|
|
REM to update, upgrade, and clean up Homebrew packages.
|
|
|
|
REM Author: Narsty
|
|
REM Title: Homebrew Update and Cleanup Utility
|
|
REM Target: MacOS
|
|
REM Version: 1.0
|
|
REM Category: Utility
|
|
|
|
ID 05ac:021e Apple:Keyboard
|
|
DELAY 500
|
|
GUI SPACE
|
|
DELAY 500
|
|
STRING terminal
|
|
DELAY 500
|
|
ENTER
|
|
DELAY 1000
|
|
STRING brew update && brew upgrade && brew cleanup && brew autoremove
|
|
DELAY 1000
|
|
ENTER
|
|
|
|
|
|
|
|
|