Bashrc

Add to .bashrc

wget https://micke.lofstaf.com/bashrc.txt -O ->> ~/.bashrc

Copy and paste

HISTCONTROL=ignoreboth

export HISTFILESIZE=2000
export HISTSIZE=2000

# For sorting
export LANG="C.UTF-8"
export LC_ALL="C.UTF-8"

# Great aliases
alias l='ls -AFhlp --color'
alias df='df -h'
alias du='du -h'
alias tlog='tail -f /var/log/syslog'
alias llog='less /var/log/syslog'
alias aptupdate='sudo apt update ; sudo apt upgrade -y ; sudo apt autoremove -y'