Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save theboutiquestudio/b514692f786b41fcc8d3cf8fd7646c17 to your computer and use it in GitHub Desktop.
Save theboutiquestudio/b514692f786b41fcc8d3cf8fd7646c17 to your computer and use it in GitHub Desktop.
.bash_aliases
alias c='clear'
alias update="sudo apt update -y"
alias upgrade="sudo apt upgrade -y"
alias remove="sudo apt autoremove -y"
alias install="sudo apt install -y"
alias fix="sudo apt -f install"
alias restart="sudo systemctl restart"
alias enable="sudo systemctl enable"
alias disable="sudo systemctl disable"
alias start="sudo systemctl start"
alias stop="sudo systemctl stop"
alias reload="sudo systemctl daemon-reload"
alias source="source ~/.bashrc"
alias nginxx="cd /etc/nginx/sites-available"
alias apache="cd /etc/apache2/sites-available"
alias server="cd /var/www/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment