From 40ca1ac145871bd3bdfec8c2fad8af55a104509c Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Tue, 1 Jun 2021 13:19:33 -0400 Subject: [PATCH] removed debugging echos --- scripts/schedule/cal.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/schedule/cal.sh b/scripts/schedule/cal.sh index 3f380f52..0938e1db 100644 --- a/scripts/schedule/cal.sh +++ b/scripts/schedule/cal.sh @@ -12,7 +12,7 @@ case $# in *) m=$1; y=$2 ;; # 2 arguments; month and year esac -echo would run, after first case: "/usr/bin/cal $m $y" +#echo would run, after first case: "/usr/bin/cal $m $y" case $m in jan*|Jan*|JAN*) m=1 ;; @@ -31,5 +31,5 @@ case $m in *) y=$m; m="" ;; # just a year esac -echo running: "/usr/bin/cal $m $y" +#echo running: "/usr/bin/cal $m $y" /usr/bin/cal $m $y # run the real one -- 2.34.1