Created
July 28, 2022 16:02
-
-
Save hemedani/ccdd25e723ac4d2daaf4db404bf78767 to your computer and use it in GitHub Desktop.
list command with exa in fish shell
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
function la --wraps=ls --wraps=exa --description 'List contents of directory using exa tree' | |
exa --grid --icons -a --long --header --accessed --git $argv | |
end |
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
function ll --wraps=ls --wraps=exa --description 'List contents of directory using exa grid' | |
exa --tree --level=1 --long --header --accessed --git $argv | |
end |
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
function lla --wraps=ls --wraps=exa --description 'List contents of directory using exa grid' | |
exa --tree --level=1 -a --long --header --accessed --git $argv | |
end |
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
function ll2 --wraps=ls --wraps=exa --description 'List contents of directory using exa grid' | |
exa --tree --level=2 -a --long --header --accessed --git $argv | |
end |
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
function llll --wraps=ls --wraps=exa --description 'List contents of directory using exa grid' | |
exa --tree --level=3 -a --long --header --accessed --git $argv | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment