sh/shell/alias/tar.sh

28 lines
205 B
Bash
Raw Normal View History

2024-11-16 14:37:38 +00:00
tc() {
tv \
--create \
--auto-compress \
--file \
"${@}"
}
2023-05-09 20:02:34 +00:00
2024-11-16 14:37:38 +00:00
tl() {
tv \
--list \
--file \
"${@}"
}
2023-05-10 07:45:19 +00:00
2024-11-16 14:37:38 +00:00
tv() {
tar \
--verbose \
"${@}"
}
tx() {
tv \
--extract \
--file \
"${@}"
}