Skip to content

Instantly share code, notes, and snippets.

@igemnace
Created September 27, 2018 16:32
Show Gist options
  • Select an option

  • Save igemnace/c5033db29fb79df975d679bc47476dbb to your computer and use it in GitHub Desktop.

Select an option

Save igemnace/c5033db29fb79df975d679bc47476dbb to your computer and use it in GitHub Desktop.

Revisions

  1. igemnace created this gist Sep 27, 2018.
    15 changes: 15 additions & 0 deletions aur-functions.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    aur() {
    aurget "$@" && aurinstall "$@"
    }

    aurdeps() {
    aurget "$@" && aurinstall --asdeps "$@"
    }

    reaur() {
    aurupdate "$@" && aurinstall "$@"
    }

    unaur() {
    sudo pacman -Runs "$@" && aurremove "$@"
    }