tar
This commit is contained in:
parent
b5761c429b
commit
22077fad31
1 changed files with 19 additions and 3 deletions
|
@ -1,5 +1,21 @@
|
||||||
alias tc='tar --verbose --create --auto-compress --file'
|
alias tc="\
|
||||||
|
tar \
|
||||||
|
--verbose \
|
||||||
|
--create \
|
||||||
|
--auto-compress \
|
||||||
|
--file \
|
||||||
|
"
|
||||||
|
|
||||||
alias tl='tar --verbose --list --file'
|
alias tl="\
|
||||||
|
tar \
|
||||||
|
--verbose \
|
||||||
|
--list \
|
||||||
|
--file \
|
||||||
|
"
|
||||||
|
|
||||||
alias tx='tar --verbose --extract --file'
|
alias tx="\
|
||||||
|
tar \
|
||||||
|
--verbose \
|
||||||
|
--extract \
|
||||||
|
--file \
|
||||||
|
"
|
||||||
|
|
Loading…
Reference in a new issue