1
0
Fork 0
mirror of synced 2024-06-01 14:51:11 -04:00
zimfw/modules/archive/init.zsh

18 lines
365 B
Bash
Raw Normal View History

2018-04-05 00:37:10 -04:00
#
# Archive aliases
#
# if pigz/pbzip2 are available, alias them as they are drop-in replacements for gzip and bzip2, respectively.
#
# pigz
#
(( ${+commands[pigz]} )) && alias gzip='pigz'
(( ${+commands[unpigz]} )) && alias gunzip='unpigz'
#
# pbzip2
#
(( ${+commands[pbzip2]} )) && alias bzip2='pbzip2'
(( ${+commands[pbunzip2]} )) && alias bunzip2='pbunzip2'