tc,tl,tv,tx

This commit is contained in:
Marc Beninca 2024-11-16 15:37:38 +01:00
parent ccf058440c
commit 8df4abafca
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

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