1
0
Fork 0
mirror of synced 2024-06-27 19:01:10 -04:00
zimfw/modules/archive/init.zsh

30 lines
401 B
Bash
Raw Normal View History

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
#
if (( $+commands[pigz] )); then
alias gzip='pigz'
fi
if (( $+commands[unpigz] )); then
alias gunzip='pigz'
fi
#
# pbzip2
#
if (( $+commands[pbzip2] )); then
alias bzip2='pbzip2'
fi
if (( $+commands[pbunzip2] )); then
alias bunzip2='pbzip2'
fi