From: W. Trevor King Date: Mon, 19 Dec 2011 02:34:58 +0000 (-0500) Subject: Add `which calendar` test to calendar call in .bash_profile. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4010cb2389835dd7b82875bf0ee46847f5ac1161;p=dotfiles-public.git Add `which calendar` test to calendar call in .bash_profile. --- diff --git a/src/.bash_profile b/src/.bash_profile index 5c790a4..b946370 100644 --- a/src/.bash_profile +++ b/src/.bash_profile @@ -13,6 +13,7 @@ fi # print my calendar if I've configured it # http://bsdcalendar.sourceforge.net/ (Gentoo: app-misc/calendar) -if [ -f ~/.calendar/calendar ]; then +CALENDAR=$(which calendar 2> /dev/null) +if [ -n "${CALENDAR}" ] && [ -f ~/.calendar/calendar ]; then calendar fi