Skip to content

Instantly share code, notes, and snippets.

@arturvt
Created July 22, 2024 11:38
Show Gist options
  • Save arturvt/aa0c928c89d3841ef76b97153b440995 to your computer and use it in GitHub Desktop.
Save arturvt/aa0c928c89d3841ef76b97153b440995 to your computer and use it in GitHub Desktop.
# Useful aliases for terminal
# colorize output
alias diff='diff --color=auto'
alias grep='grep --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias ls='ls --color=auto'
alias ll='ls -alF'
alias la='ls -A'
alias l=ll
alias cd..='cd ..'
@arturvt
Copy link
Author

arturvt commented Jul 22, 2024

Useful aliases for mac cli.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment