mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2024-11-28 18:28:39 -05:00
29 lines
232 B
Fish
29 lines
232 B
Fish
|
#list comamnds
|
||
|
function l
|
||
|
exa $argv
|
||
|
end
|
||
|
|
||
|
function ls
|
||
|
exa $argv
|
||
|
end
|
||
|
|
||
|
function la
|
||
|
ls -a
|
||
|
end
|
||
|
|
||
|
function ll
|
||
|
ls -l
|
||
|
end
|
||
|
|
||
|
function lla
|
||
|
ls -la
|
||
|
end
|
||
|
|
||
|
function lt
|
||
|
ls --tree
|
||
|
end
|
||
|
|
||
|
function lg
|
||
|
ls -a | grep -E $argv
|
||
|
end
|