31 lines
407 B
1
tc() { a__tar_create "${@}"; }
2
a__tar_create() {
3
a__tar_verbose \
4
--create \
5
--auto-compress \
6
--file \
7
"${@}"
8
}
9
10
tl() { a__tar_list "${@}"; }
11
a__tar_list() {
12
a__tar_verbose \
13
--list \
14
--file \
15
"${@}"
16
}
17
18
tv() { a__tar_verbose "${@}"; }
19
a__tar_verbose() {
20
tar \
21
--verbose \
22
"${@}"
23
}
24
25
tx() { a__tar_xtract "${@}"; }
26
a__tar_xtract() {
27
a__tar_verbose \
28
--extract \
29
--file \
30
"${@}"
31
}
32