From 77193451749e9304f56f4ba410fb45c6934f5e29 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Fri, 31 Oct 2008 00:08:10 +0100 Subject: bug fixed --- bashrc/common/browser.sh | 2 +- bashrc/common/pager.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'bashrc/common') diff --git a/bashrc/common/browser.sh b/bashrc/common/browser.sh index 4a7e7a1..1f610f0 100644 --- a/bashrc/common/browser.sh +++ b/bashrc/common/browser.sh @@ -6,7 +6,7 @@ if hash opera > /dev/null 2>&1 ; then else # use firefox by default ... - if hash firefox > /dev/null 2&>1 ; then + if hash firefox > /dev/null 2>&1 ; then export BROWSER=firefox fi fi diff --git a/bashrc/common/pager.sh b/bashrc/common/pager.sh index e46410f..8e3217d 100644 --- a/bashrc/common/pager.sh +++ b/bashrc/common/pager.sh @@ -1,7 +1,7 @@ # pager options # use less by default ... -if hash less > /dev/null 2&>1 ; then +if hash less > /dev/null 2>&1 ; then export PAGER=less export LESS="-R --ignore-case --long-prompt" fi -- cgit v1.2.3