sh/shell/alias/tar.sh
2024-11-16 15:37:38 +01:00

27 lines
205 B
Bash

tc() {
tv \
--create \
--auto-compress \
--file \
"${@}"
}
tl() {
tv \
--list \
--file \
"${@}"
}
tv() {
tar \
--verbose \
"${@}"
}
tx() {
tv \
--extract \
--file \
"${@}"
}