From 683480e3436c60e7fb61f01cf1228741c8e82852 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Sun, 9 Jan 2022 15:20:32 +0100 Subject: [PATCH] bash: ll argumente --- .bash_extra | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bash_extra b/.bash_extra index 062f6c6..c045ce7 100644 --- a/.bash_extra +++ b/.bash_extra @@ -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 }