You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
694 B
21 lines
694 B
alias brewp='brew pin'
|
|
alias brewsp='brew list --pinned'
|
|
alias bubo='brew update && brew outdated'
|
|
alias bubc='brew upgrade && brew cleanup'
|
|
alias bubu='bubo && bubc'
|
|
alias buf='brew upgrade --formula'
|
|
alias bcubo='brew update && brew outdated --cask'
|
|
alias bcubc='brew upgrade --cask && brew cleanup'
|
|
|
|
function brews() {
|
|
local formulae="$(brew leaves | xargs brew deps --installed --for-each)"
|
|
local casks="$(brew list --cask)"
|
|
|
|
local blue="$(tput setaf 4)"
|
|
local bold="$(tput bold)"
|
|
local off="$(tput sgr0)"
|
|
|
|
echo "${blue}==>${off} ${bold}Formulae${off}"
|
|
echo "${formulae}" | sed "s/^\(.*\):\(.*\)$/\1${blue}\2${off}/"
|
|
echo "\n${blue}==>${off} ${bold}Casks${off}\n${casks}"
|
|
}
|