asu shell function to run as another user – good for sudo

asu () { user=$1; shift; su $user -c “$*”; }

Leave a comment