rwx/sh/alias/tar.sh
2025-07-27 15:40:27 +02:00

34 lines
349 B
Bash

# functions to handle tar
#= tc
rwx_tar_create() {
rwx_tar_verbose \
--create \
--auto-compress \
--file \
"${@}"
}
#= tl
rwx_tar_list() {
rwx_tar_verbose \
--list \
--file \
"${@}"
}
#| tar
#= tv
rwx_tar_verbose() {
tar \
--verbose \
"${@}"
}
#= tx
rwx_tar_xtract() {
rwx_tar_verbose \
--extract \
--file \
"${@}"
}