Created
June 2, 2025 12:03
-
-
Save theboutiquestudio/b514692f786b41fcc8d3cf8fd7646c17 to your computer and use it in GitHub Desktop.
.bash_aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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