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 \ "${@}"