Uma solução pode ser feita com um script simples:
-
Abrir arquivo
$ vim yaourt-helper.sh
-
Criar script
#!/bin/bash _update="yaourt -Syua --noconfirm" if ! which $1 2>/dev/null 1>&2; then echo 'Package not installed, installing' $_update $1 exit $?; fi echo 'Already installed, checking for upgrade' $_update
-
Defina permissões e execute
$ chmod +x yaourt-helper.sh && ./yaourt-helper.sh jruby
Nota: usar --noconfirm
é perigoso, a menos que você saiba exatamente o que está fazendo.