bash: ll argumente

This commit is contained in:
Michael Grote 2022-01-09 15:20:32 +01:00
parent 236cd08786
commit 683480e343

View file

@ -151,9 +151,9 @@ function gc {
}
function ll {
if command -v exa >/dev/null ; then
exa --long --git --all --ignore-glob='.git' --group-directories-first --sort=name --group
exa --long --git --all --ignore-glob='.git' --group-directories-first --sort=name --group "$@"
else
ls -lah
ls -lah "$@"
fi
}