From 491dc1fa1cd4507213b7a385940474c4b4388805 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 18 Nov 2024 15:39:27 +0100 Subject: [PATCH] tree --- sh/alias/tree.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sh/alias/tree.sh b/sh/alias/tree.sh index c96738c..9d807c0 100644 --- a/sh/alias/tree.sh +++ b/sh/alias/tree.sh @@ -1,9 +1,11 @@ -t() { +t() { sh_a__tree "${@}"; } +sh_a__tree() { tree \ "${@}" } -ta() { +ta() { sh_a__tree_all "${@}"; } +sh_a__tree_all() { tree \ -a \ "${@}"