1
0
Fork 0
mirror of synced 2024-06-13 12:31:09 -04:00
zimfw/modules/archive/init.zsh
2016-01-07 16:20:23 -05:00

30 lines
413 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='unpigz'
fi
#
# pbzip2
#
if (( ${+commands[pbzip2]} )); then
alias bzip2='pbzip2'
fi
if (( ${+commands[pbunzip2]} )); then
alias bunzip2='pbunzip2'
fi