2025-07-06 07:10:07 +02:00
|
|
|
# functions to handle tar
|
|
|
|
|
|
|
|
#= tc
|
2025-02-10 21:54:51 +01:00
|
|
|
a__tar_create() {
|
|
|
|
a__tar_verbose \
|
|
|
|
--create \
|
|
|
|
--auto-compress \
|
|
|
|
--file \
|
|
|
|
"${@}"
|
|
|
|
}
|
|
|
|
|
2025-07-06 07:10:07 +02:00
|
|
|
#= tl
|
2025-02-10 21:54:51 +01:00
|
|
|
a__tar_list() {
|
|
|
|
a__tar_verbose \
|
|
|
|
--list \
|
|
|
|
--file \
|
|
|
|
"${@}"
|
|
|
|
}
|
|
|
|
|
2025-07-06 07:10:07 +02:00
|
|
|
#= tv
|
2025-02-10 21:54:51 +01:00
|
|
|
a__tar_verbose() {
|
|
|
|
tar \
|
|
|
|
--verbose \
|
|
|
|
"${@}"
|
|
|
|
}
|
|
|
|
|
2025-07-06 07:10:07 +02:00
|
|
|
#= tx
|
2025-02-10 21:54:51 +01:00
|
|
|
a__tar_xtract() {
|
|
|
|
a__tar_verbose \
|
|
|
|
--extract \
|
|
|
|
--file \
|
|
|
|
"${@}"
|
|
|
|
}
|