Last active
February 16, 2021 05:42
-
-
Save untillnesss/1d12defde28f5b2dcf7f40a78bf64efc to your computer and use it in GitHub Desktop.
Bash aliases ku
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 gr="git log --all --oneline --graph --decorate" | |
alias stopa2="sudo /etc/init.d/apache2 stop" | |
alias stopsql="sudo service mysql stop" | |
alias startxampp="sudo /opt/lampp/lampp start" | |
alias starter="stopa2 && stopsql && startxampp" | |
alias laras="php artisan serve" | |
alias codela="code . && laras" | |
alias sshlangkah="ssh [email protected]" | |
alias sshyasa="ssh [email protected]" | |
alias startmongo="sudo systemctl start mongod" | |
alias killport="sudo kill -9 $(sudo lsof -t -i:8000)" | |
alias sshmerindo="ssh [email protected]" | |
alias pa="php artisan" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment