Last active
October 23, 2019 19:27
-
-
Save thiagolsfortunato/3504537474ea3c73966ff624828ea261 to your computer and use it in GitHub Desktop.
This file contains 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 cs='clear;ls' | |
alias egrep='egrep --colour=auto' | |
alias fgrep='fgrep --colour=auto' | |
alias grep='grep --colour=auto' | |
alias h='history' | |
alias home='cd ~/' | |
alias k='kill' | |
alias ll='ls -la' | |
alias c='clear' | |
alias ls='ls --color' | |
alias ls='ls --color=auto' | |
alias lsa='ls -a' | |
alias lslah='ls -lah' | |
alias lsls='ls -lhS' | |
alias lstr='ls -ltr' | |
alias null='/dev/null' | |
alias p='cat' | |
alias pd='pwd' | |
alias pd='pwd' | |
alias pk='pkill' | |
alias q='exit' | |
alias root='cd /' | |
alias t='time' | |
alias terraform-plan='rm -rf .terraform/ && terraform init && terraform plan' | |
alias ..='cd ..' | |
alias ...='cd ../..' | |
alias ....='cd ../../ ..' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment