On Fri, Aug 19, 2011 at 10:11 AM, Thomas Dziedzic <gostrc@xxxxxxxxx> wrote: > > I've used yaourt for a couple of years now. > It has always worked for me for the most part, and having a common > command for everything is very convenient for me. alias y=yaourt and > you have one of the simplest ways to do a complete update of your > system, y -Syua A few months ago I wrote a little bash function to put in my bashrc. Maybe you'll like it. # Better yaourt yaourt () { if [[ $# == 0 ]] then /usr/bin/yaourt -Sayu else /usr/bin/yaourt $@ fi } So yaourt with no arguments updates my system. I use it about twice a day. Vitor