sh/shell/alias/tar.sh
2024-11-15 16:27:41 +01:00

21 lines
175 B
Bash

alias tc="\
tar \
--verbose \
--create \
--auto-compress \
--file \
"
alias tl="\
tar \
--verbose \
--list \
--file \
"
alias tx="\
tar \
--verbose \
--extract \
--file \
"