From 9dcac1c4716ece1fe79e4e721d57b5b247947cad Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 15 Dec 2015 16:18:51 +1300 Subject: Make short-circuits a bit more explicit --- bash/bash_profile.d/verse.bash | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'bash/bash_profile.d/verse.bash') diff --git a/bash/bash_profile.d/verse.bash b/bash/bash_profile.d/verse.bash index d7877a05..f463d074 100644 --- a/bash/bash_profile.d/verse.bash +++ b/bash/bash_profile.d/verse.bash @@ -1,8 +1,12 @@ # Only if shell is interactive -[[ $- == *i* ]] || return +if [[ $- != *i* ]] ; then + return +fi # Only if verse(1) available -hash fortune 2>/dev/null || return +if ! hash verse 2>/dev/null ; then + return +fi # Run verse(1) if we haven't seen it already today (the verses are selected by # date); run in a subshell to keep vars out of global namespace -- cgit v1.2.3