This commit is contained in:
Marc Beninca 2024-11-18 16:43:42 +01:00
parent b13056034b
commit 6588da4ad6
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -1,26 +1,30 @@
tc() {
tv \
tc() { sh_a__tar_create "${@}"; }
sh_a__tar_create() {
sh_a__tar_verbose \
--create \
--auto-compress \
--file \
"${@}"
}
tl() {
tv \
tl() { sh_a__tar_list "${@}"; }
sh_a__tar_list() {
sh_a__tar_verbose \
--list \
--file \
"${@}"
}
tv() {
tv() { sh_a__tar_verbose "${@}"; }
sh_a__tar_verbose() {
tar \
--verbose \
"${@}"
}
tx() {
tv \
tx() { sh_a__tar_xtract "${@}"; }
sh_a__tar_xtract() {
sh_a__tar_verbose \
--extract \
--file \
"${@}"