rwx/sh/alias/tar.sh
Marc Beninca 020aaa0b9a
All checks were successful
/ job (push) Successful in 1m12s
refactor(history): commit development branch
new development branch from root commit
2025-02-10 21:54:51 +01:00

31 lines
407 B
Bash

tc() { a__tar_create "${@}"; }
a__tar_create() {
a__tar_verbose \
--create \
--auto-compress \
--file \
"${@}"
}
tl() { a__tar_list "${@}"; }
a__tar_list() {
a__tar_verbose \
--list \
--file \
"${@}"
}
tv() { a__tar_verbose "${@}"; }
a__tar_verbose() {
tar \
--verbose \
"${@}"
}
tx() { a__tar_xtract "${@}"; }
a__tar_xtract() {
a__tar_verbose \
--extract \
--file \
"${@}"
}