7 lines
160 B
Fish
7 lines
160 B
Fish
function ls --description 'List contents of directory'
|
|
if which gls >/dev/null
|
|
command gls --color=auto $argv
|
|
else
|
|
command ls --color=auto $argv
|
|
end
|
|
end
|