You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exa() {
local arg long=''
for arg in "$@"
do
[[ "$arg" == "-l" || "$arg" == "--long" ]] && long='y'
done
if test -z "$long"
then
command exa -1 "$@"
else
command exa "$@"
fi
}
This is really awful UX though. It's even a bug considering there is EXA_STRICT in the manpage.
exa
exits with an error if I use "useless options":This limits my ability to easily create aliases. I want an option where
exa
just chills out. :))The text was updated successfully, but these errors were encountered: