From c7d3d72e62fb3acc337e1ca2ccc3c0f04eb84a52 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 16 Nov 2024 13:55:07 +0100 Subject: [PATCH] tree/@ --- shell/alias/tree.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/shell/alias/tree.sh b/shell/alias/tree.sh index dbea341..c96738c 100644 --- a/shell/alias/tree.sh +++ b/shell/alias/tree.sh @@ -1,8 +1,10 @@ t() { - tree + tree \ + "${@}" } ta() { tree \ - -a + -a \ + "${@}" }