mirror of https://gitlab.com/meliurwen/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
287 B
8 lines
287 B
3 years ago
|
alias upgrade='sudo apt-get update && \
|
||
|
sudo apt upgrade && \
|
||
|
sudo apt-get autoremove --purge && \
|
||
|
sudo apt-get clean' # System clean upgrade
|
||
|
alias history='history 1' # Print whole history
|
||
|
alias diff='diff --color'
|
||
|
alias ls='ls --color=tty'
|