From b330cd1311500f3896ee701c4dea27e9160a8c9b Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 21 Nov 2009 23:21:55 +0100 Subject: Use [[ -n $command[...] ]] instead of which .. &> /dev/null --- etc/env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'etc/env') diff --git a/etc/env b/etc/env index 9a94ed5..3072302 100644 --- a/etc/env +++ b/etc/env @@ -16,10 +16,10 @@ export LESS='--silent --no-init --clear-screen --RAW-CONTROL-CHARS --quit-if-one export HOST export COLUMNS export LINES -if which lesspipe &> /dev/null; then +if [[ -n $commands[lesspipe] ]] { export LESSOPEN='| lesspipe %s' export LESSCLOSE='lesspipe %s %s' -fi +} # local settings, not tracked with git [[ -r $ZDIR/local-env ]] && source $ZDIR/local-env -- cgit v1.2.3