1
0
Fork 0
mirror of synced 2024-06-22 16:31:09 -04:00
zimfw/modules/archive/init.zsh
2015-12-16 17:00:25 -05:00

30 lines
401 B
Bash

#
# 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