2015-12-16 17:00:25 -05:00
|
|
|
#
|
|
|
|
# Archive aliases
|
|
|
|
#
|
|
|
|
|
|
|
|
# if pigz/pbzip2 are available, alias them as they are drop-in replacements for gzip and bzip2, respectively.
|
|
|
|
|
|
|
|
#
|
|
|
|
# pigz
|
|
|
|
#
|
2018-02-07 18:27:59 -05:00
|
|
|
(( ${+commands[pigz]} )) && alias gzip='pigz'
|
|
|
|
(( ${+commands[unpigz]} )) && alias gunzip='unpigz'
|
2015-12-16 17:00:25 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# pbzip2
|
|
|
|
#
|
2018-02-07 18:27:59 -05:00
|
|
|
(( ${+commands[pbzip2]} )) && alias bzip2='pbzip2'
|
|
|
|
(( ${+commands[pbunzip2]} )) && alias bunzip2='pbunzip2'
|