Skip to content

Instantly share code, notes, and snippets.

@adenvt
Created September 26, 2018 03:54
Show Gist options
  • Save adenvt/a030e517aa65b5043357e278602acb10 to your computer and use it in GitHub Desktop.
Save adenvt/a030e517aa65b5043357e278602acb10 to your computer and use it in GitHub Desktop.
My Bash Aliases
# 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