Skip to content

Instantly share code, notes, and snippets.

@merrickluo
Last active August 18, 2016 13:42
Show Gist options
  • Save merrickluo/06a245e90306876d8cf6c45674d01566 to your computer and use it in GitHub Desktop.
Save merrickluo/06a245e90306876d8cf6c45674d01566 to your computer and use it in GitHub Desktop.
function brew
if [ (count $argv) -ge 2 ]
set other $argv[2..-1]
else
set other ""
end
switch $argv[1]
case install
yaourt -S $other
case update
yaourt -Sya $other
yaourt -Qua $other
case upgrade
yaourt -Sua $other
case search
yaourt -Ss $other
case info
yaourt -Q $other
case '*'
echo "kindly remind you that this is Arch Linux"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment