rwx/sh/alias/tar.sh

32 lines
418 B
Bash
Raw Normal View History

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