From 6d700a4a99ac182f7f96f272402977404c10052f Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 27 Jul 2025 15:40:27 +0200 Subject: [PATCH] tar --- sh/alias/tar.sh | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/sh/alias/tar.sh b/sh/alias/tar.sh index bf8e8be..4b31928 100644 --- a/sh/alias/tar.sh +++ b/sh/alias/tar.sh @@ -1,8 +1,8 @@ # functions to handle tar #= tc -a__tar_create() { - a__tar_verbose \ +rwx_tar_create() { + rwx_tar_verbose \ --create \ --auto-compress \ --file \ @@ -10,23 +10,24 @@ a__tar_create() { } #= tl -a__tar_list() { - a__tar_verbose \ +rwx_tar_list() { + rwx_tar_verbose \ --list \ --file \ "${@}" } +#| tar #= tv -a__tar_verbose() { +rwx_tar_verbose() { tar \ --verbose \ "${@}" } #= tx -a__tar_xtract() { - a__tar_verbose \ +rwx_tar_xtract() { + rwx_tar_verbose \ --extract \ --file \ "${@}"