tar
This commit is contained in:
parent
b13056034b
commit
6588da4ad6
1 changed files with 11 additions and 7 deletions
|
@ -1,26 +1,30 @@
|
||||||
tc() {
|
tc() { sh_a__tar_create "${@}"; }
|
||||||
tv \
|
sh_a__tar_create() {
|
||||||
|
sh_a__tar_verbose \
|
||||||
--create \
|
--create \
|
||||||
--auto-compress \
|
--auto-compress \
|
||||||
--file \
|
--file \
|
||||||
"${@}"
|
"${@}"
|
||||||
}
|
}
|
||||||
|
|
||||||
tl() {
|
tl() { sh_a__tar_list "${@}"; }
|
||||||
tv \
|
sh_a__tar_list() {
|
||||||
|
sh_a__tar_verbose \
|
||||||
--list \
|
--list \
|
||||||
--file \
|
--file \
|
||||||
"${@}"
|
"${@}"
|
||||||
}
|
}
|
||||||
|
|
||||||
tv() {
|
tv() { sh_a__tar_verbose "${@}"; }
|
||||||
|
sh_a__tar_verbose() {
|
||||||
tar \
|
tar \
|
||||||
--verbose \
|
--verbose \
|
||||||
"${@}"
|
"${@}"
|
||||||
}
|
}
|
||||||
|
|
||||||
tx() {
|
tx() { sh_a__tar_xtract "${@}"; }
|
||||||
tv \
|
sh_a__tar_xtract() {
|
||||||
|
sh_a__tar_verbose \
|
||||||
--extract \
|
--extract \
|
||||||
--file \
|
--file \
|
||||||
"${@}"
|
"${@}"
|
||||||
|
|
Loading…
Reference in a new issue