Browse Source

Add missing parenthesis

The bug was introduced in 933c61b.
master
Sorin Ionescu 9 years ago
parent
commit
b41f485528
  1. 2
      modules/utility/init.zsh

2
modules/utility/init.zsh

@ -146,7 +146,7 @@ alias du='du -kh' @@ -146,7 +146,7 @@ alias du='du -kh'
if (( $+commands[htop] )); then
alias top=htop
else
if [[ "$OSTYPE" == darwin*|*bsd* ]]; then
if [[ "$OSTYPE" == (darwin*|*bsd*) ]]; then
alias topc='top -o cpu'
alias topm='top -o vsize'
else

Loading…
Cancel
Save