1

Topic: Quick bash alias to upgrade Hyperbola

Just put the following line in your .bashrc

alias upgrade-hyperbola='sudo pacman -Sy && sudo pacman -Su'

and later type:

$ upgrade-hyperbola 

to fetch any new security packages, and upgrade the Hyperbola GNU/Linux-libre which replaces update/upgrade commands used in other GNU distributions.

2

Re: Quick bash alias to upgrade Hyperbola

jmarciano wrote:

Just
put the following line in your .bashrc

alias upgrade-hyperbola='sudo pacman -Sy && sudo pacman 
-Su'

and later type:

$ upgrade-hyperbola 

to fetch any new security packages, and upgrade the Hyperbola
GNU/Linux-libre which replaces update/upgrade commands used in other GNU
distributions.

Thank jmarciano.

The best thing is to have simple bashrc. But if you want more features there in https://git.sr.ht/~heckyel/hyperterm

~ Jesús E.

3

Re: Quick bash alias to upgrade Hyperbola

Oh mama mia.

I would loose all my bash settings if I do how it says there on those pages.

I have added for me few more short functions:

# Pacman functions
 function pacinstall () {
     sudo pacman -S "$@"
 }
 
 function pacremove () {
     sudo pacman -R "$@"
 }
 
 function paclist () {
     sudo pacman -Ql "$1"
 }

4

Re: Quick bash alias to upgrade Hyperbola

jmarciano wrote:

Oh mama mia.

I would loose all my bash settings if I do how it says there on those pages.

I have added for me few more short functions:

# Pacman functions
 function pacinstall () {
     sudo pacman -S "$@"
 }
 
 function pacremove () {
     sudo pacman -R "$@"
 }
 
 function paclist () {
     sudo pacman -Ql "$1"
 }

Ok. No problem, hyperbash is just a reference, :-)

~ Jesús E.