From 37f92021dbc688b6270234d0dc2d8e9d10bf9721 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Thu, 7 Dec 2017 13:52:55 +0000 Subject: [PATCH] Fix LESSOPEN environment variable --- bash/.bashrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bash/.bashrc b/bash/.bashrc index dd39849..249787c 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -24,7 +24,11 @@ HISTFILESIZE=2000 shopt -s checkwinsize # make less more friendly for non-text input files, see lesspipe(1) -[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" +if [ -x /usr/bin/lesspipe ]; then + export LESSOPEN="|lesspipe %s" +elif [ -x /usr/bin/lesspipe.sh ]; then + export LESSOPEN="|lesspipe %s" +fi # set variable identifying the chroot you work in (used in the prompt below) if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then -- 2.45.2