sh/sh/cmd/tar.sh
2024-11-18 12:38:15 +01:00

27 lines
205 B
Bash

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