removed debugging echos
authorChris Koeritz <cak0l@virginia.edu>
Tue, 1 Jun 2021 17:19:33 +0000 (13:19 -0400)
committerChris Koeritz <cak0l@virginia.edu>
Tue, 1 Jun 2021 17:19:33 +0000 (13:19 -0400)
scripts/schedule/cal.sh

index 3f380f52c24f34b2208f0ee76b7a3866b3b4d5e3..0938e1db8d7212ecb0968ff874d73a33666eca3b 100644 (file)
@@ -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