Created
April 17, 2024 10:36
-
-
Save aldosch/02bd14e1305e365c8cea67baca1de77d to your computer and use it in GitHub Desktop.
brew i
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew() { | |
if [[ $1 == "i" ]]; then | |
command brew install "${@:2}" | |
else | |
command brew "$@" | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment