Skip to content

Instantly share code, notes, and snippets.

@mesprague
Last active August 29, 2015 14:09
Show Gist options
  • Save mesprague/7d0c43d087c5f6329943 to your computer and use it in GitHub Desktop.
Save mesprague/7d0c43d087c5f6329943 to your computer and use it in GitHub Desktop.
Bash functions for arch linux
# search the Arch User Repository
alx-aur-search() { curl -s $(printf "https://aur.archlinux.org/rpc.php?type=search&arg=%s" $1) | jshon -e results; }
findowner() { local result = ($(pacman -Qo $1)); echo ${result[4]}; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment