Hey there to the few Anglophone readers that still visit this site! Today’s post is not as short as usual but rather to the point, plus it also comes with an important announcement. But first things first so, let me just share with you guys a couple of bash aliases that I find particularly useful for dealing with apt or, in other words, when it comes to add/remove software from the command line in a Debian-based distro:
# ~/.bashrc: executed by bash(1) for non-login shells.
# some apt aliases
alias add="sudo apt-get install --allow-unauthenticated -y"
alias fix="sudo apt-get install --fix-broken --assume-yes"
alias remove="sudo apt-get remove --assume-yes"
alias update="sudo apt-get update --assume-yes"
alias upgrade="sudo apt-get upgrade --assume-yes"
alias expunge="sudo apt-get autoclean --assume-yes"
alias flush="sudo apt-get autoremove --assume-yes"
Interesting? If you liked the idea and actually want to use them, it’s as simple as pasting those anywhere within your .bashrc file.
Okey so now it’s time to my oh-so-important announcement! Well, since I’ve been trying to kind of have a blog here for a year a half now, and given that the overall feedback has been, let’s say far less frequent than my original expectations really, but most importantly because I know some of you were really waiting for this, I’ve decided to start posting in Spanish
That’s pretty much it. Muchas gracias por leerme y los despido entonces hasta la próxima.
PD: No quería dejar de saludar a todos mis compatriotas, deseándoles un muy feliz Día de la Independencia!
Un abrazo,









Hi
I like the idea of real keywords. My aliases are more, agu (update), agug (upgrade), agi (install), acs (apt-cache searh), acsw (apt-cache show), and so on.
Nice blog by the way
@loquehumanie
Thanks for the comment!