Created
March 11, 2015 04:10
-
-
Save caktux/81716b6835dcc65d350d to your computer and use it in GitHub Desktop.
Get a brew formula version number
This file contains 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
# show installed brew formula version | |
function brew-version { | |
brew info $1 | awk '{print $3}' | head -n1 | |
} | |
# show last available brew formula version | |
function brew-last-version { | |
brew versions $1 | awk '{print $1}' | head -n1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment