Skip to content

Instantly share code, notes, and snippets.

@angel190884
Created August 8, 2021 18:04
Show Gist options
  • Save angel190884/ac8bec71ae7ccd38f5b696a023a1e48c to your computer and use it in GitHub Desktop.
Save angel190884/ac8bec71ae7ccd38f5b696a023a1e48c to your computer and use it in GitHub Desktop.
exa aliases
# general use
alias ls='exa' # ls
alias l='exa -lbF --git' # list, size, type, git
alias ll='exa -lbGF --git' # long list
alias llm='exa -lbGd --git --sort=modified' # long list, modified date sort
alias la='exa -lbhHigUmuSa --time-style=long-iso --git --color-scale' # all list
alias lx='exa -lbhHigUmuSa@ --time-style=long-iso --git --color-scale' # all + extended list
# specialty views
alias lS='exa -1' # one column, just names
alias lt='exa --tree --level=2'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment