Last active
October 26, 2023 13:34
-
-
Save o3bvv/ddcf779e7f9ae10073991e0a621bc1b2 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
alias l="exa -l -F --group-directories-first -b --no-permissions --git --no-user --no-time" | |
alias lz='l -s size -r' | |
alias lZ='l -s size' | |
alias lx='l -s ext' | |
alias ls='exa' | |
alias l1='ls -1' | |
alias ll="exa -l -F --group-directories-first -b --no-permissions --git --no-user --time-style=long-iso --changed" | |
alias llt="ll -s changed -r" | |
alias llT="ll -s changed" | |
alias llz="ll -s size -r" | |
alias llZ="ll -s size" | |
alias llx="ll -s ext" | |
alias la="exa -l -F --group-directories-first -b --time-style=long-iso --git -g --header --changed" | |
alias ldot='ll -d .*' | |
alias tree='exa --tree' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment