Created
September 26, 2018 03:54
-
-
Save adenvt/a030e517aa65b5043357e278602acb10 to your computer and use it in GitHub Desktop.
My 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
# Clear the terminal | |
alias cls='clear' | |
# Alter the ls command | |
alias ll='ls --color --time-style="+%b %d %Y %H:%M"' | |
alias ls='ls -ac' | |
alias lls='ls -lac' | |
alias la="ls --color -lAGbh --time-style='+%b %d %Y %H:%M'" | |
# NPM run | |
alias n='npm' | |
alias ni='npm install --save' | |
alias nid='npm install --save-dev' | |
alias nrun='npm run' | |
alias ntest='npm test' | |
alias nstart='npm run start' | |
alias nhot='npm run hot' | |
alias ndev='npm run dev' | |
alias nprod='npm run prod' | |
alias nlint='npm run lint' | |
alias nfix='npm run fix' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment