Created
August 8, 2021 18:04
-
-
Save angel190884/ac8bec71ae7ccd38f5b696a023a1e48c to your computer and use it in GitHub Desktop.
exa aliases
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
# 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