tar
This commit is contained in:
parent
d420342387
commit
6d700a4a99
1 changed files with 8 additions and 7 deletions
|
@ -1,8 +1,8 @@
|
|||
# functions to handle tar
|
||||
|
||||
#= tc
|
||||
a__tar_create() {
|
||||
a__tar_verbose \
|
||||
rwx_tar_create() {
|
||||
rwx_tar_verbose \
|
||||
--create \
|
||||
--auto-compress \
|
||||
--file \
|
||||
|
@ -10,23 +10,24 @@ a__tar_create() {
|
|||
}
|
||||
|
||||
#= tl
|
||||
a__tar_list() {
|
||||
a__tar_verbose \
|
||||
rwx_tar_list() {
|
||||
rwx_tar_verbose \
|
||||
--list \
|
||||
--file \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
#| tar
|
||||
#= tv
|
||||
a__tar_verbose() {
|
||||
rwx_tar_verbose() {
|
||||
tar \
|
||||
--verbose \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
#= tx
|
||||
a__tar_xtract() {
|
||||
a__tar_verbose \
|
||||
rwx_tar_xtract() {
|
||||
rwx_tar_verbose \
|
||||
--extract \
|
||||
--file \
|
||||
"${@}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue