From b2df5a6eb5804e8c4e1001d37fc7355bd364756c Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 18 Nov 2024 15:33:44 +0100 Subject: [PATCH] clear --- sh/alias/clear.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sh/alias/clear.sh b/sh/alias/clear.sh index 6a69638..9731fe0 100644 --- a/sh/alias/clear.sh +++ b/sh/alias/clear.sh @@ -1,5 +1,6 @@ # clear terminal -c() { +c() { sh_a__clear "${@}"; } +sh_a__clear() { clear \ "${@}" }