This commit is contained in:
Marc Beninca 2024-11-18 16:41:12 +01:00
parent 95ea69c92f
commit b13056034b
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

27
sh/alias/tar.sh Normal file
View file

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