Last active
November 24, 2020 10:29
-
-
Save jponge/da8ce018559736e8ca60d5609d1b789b 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
# A few aliases for exa, a ls replacement | |
alias l="exa --sort Name" | |
alias ll="exa --sort Name --long" | |
alias la="exa --sort Name --long --all" | |
alias lr="exa --sort Name --long --recurse" | |
alias lra="exa --sort Name --long --recurse --all" | |
alias lt="exa --sort Name --long --tree" | |
alias lta="exa --sort Name --long --tree --all" | |
alias ls="exa --sort Name" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment