Running system updates can sometimes be time-consuming, especially if you forget the commands. Here’s a quick way to create a shortcut using aliases.
- Open your terminal and type:
- nano ~/.bash_aliases
- alias update='sudo apt update && sudo apt upgrade -y'
- source ~/.bash_aliases
Now, every time you want to update your system, you can just type update
in the terminal!
Stay tuned for more!