From e43429a6838a1bd6cb55c3a8a67ec5a7977dbbb0 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 16 Nov 2024 13:53:18 +0100 Subject: [PATCH] tree --- shell/alias/tree.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/shell/alias/tree.sh b/shell/alias/tree.sh index 2252fc1..dbea341 100644 --- a/shell/alias/tree.sh +++ b/shell/alias/tree.sh @@ -1,8 +1,8 @@ -alias t="\ -tree \ -" +t() { + tree +} -alias ta="\ -tree \ --a \ -" +ta() { + tree \ + -a +}