From 8af3ee2501b3d26f994a37a590af6fe9c28d1429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 24 May 2012 08:07:14 +0100 Subject: [PATCH] scripts: remove a stray print from debugging and fix up cron entry docs --- scripts/five-bugs-a-day.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/five-bugs-a-day.pl b/scripts/five-bugs-a-day.pl index 29de512c63..f722c3902c 100755 --- a/scripts/five-bugs-a-day.pl +++ b/scripts/five-bugs-a-day.pl @@ -38,7 +38,7 @@ # # MAILTO=you@nowhere.org # # send ten random buglinks every day at 16.30 -# 30 16### /usr/bin/perl /path/to/five-bugs-a-day.pl +# 30 16 * * * /usr/bin/perl /path/to/five-bugs-a-day.pl # # # Yes, it's PERL, sorry. @@ -58,7 +58,6 @@ sub shuffle while ( --$i ) { my $j = int rand( $i+1 ); - print "j = $j, i = $i \n"; @$array[$i,$j] = @$array[$j,$i]; }