From 72b64d45709f0ceb4226d5529c648e68502c901b Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 6 Jul 2025 07:10:07 +0200 Subject: [PATCH] alias/tar --- sh/alias/tar.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sh/alias/tar.sh b/sh/alias/tar.sh index 92b8fbf..bf8e8be 100644 --- a/sh/alias/tar.sh +++ b/sh/alias/tar.sh @@ -1,4 +1,6 @@ -tc() { a__tar_create "${@}"; } +# functions to handle tar + +#= tc a__tar_create() { a__tar_verbose \ --create \ @@ -7,7 +9,7 @@ a__tar_create() { "${@}" } -tl() { a__tar_list "${@}"; } +#= tl a__tar_list() { a__tar_verbose \ --list \ @@ -15,14 +17,14 @@ a__tar_list() { "${@}" } -tv() { a__tar_verbose "${@}"; } +#= tv a__tar_verbose() { tar \ --verbose \ "${@}" } -tx() { a__tar_xtract "${@}"; } +#= tx a__tar_xtract() { a__tar_verbose \ --extract \