31 lines
440 B
Bash
31 lines
440 B
Bash
tc() { sh_a__tar_create "${@}"; }
|
|
sh_a__tar_create() {
|
|
sh_a__tar_verbose \
|
|
--create \
|
|
--auto-compress \
|
|
--file \
|
|
"${@}"
|
|
}
|
|
|
|
tl() { sh_a__tar_list "${@}"; }
|
|
sh_a__tar_list() {
|
|
sh_a__tar_verbose \
|
|
--list \
|
|
--file \
|
|
"${@}"
|
|
}
|
|
|
|
tv() { sh_a__tar_verbose "${@}"; }
|
|
sh_a__tar_verbose() {
|
|
tar \
|
|
--verbose \
|
|
"${@}"
|
|
}
|
|
|
|
tx() { sh_a__tar_xtract "${@}"; }
|
|
sh_a__tar_xtract() {
|
|
sh_a__tar_verbose \
|
|
--extract \
|
|
--file \
|
|
"${@}"
|
|
}
|