scripts: remove a stray print from debugging and fix up cron entry docs
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 24 May 2012 07:07:14 +0000 (08:07 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 24 May 2012 07:07:14 +0000 (08:07 +0100)
scripts/five-bugs-a-day.pl

index 29de512..f722c39 100755 (executable)
@@ -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];
     }