From: Michael Orlitzky Date: Thu, 11 Feb 2010 19:26:50 +0000 (-0500) Subject: Prettied up the output with a header. X-Git-Tag: 0.0.1~151 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=commitdiff_plain;h=75b0a08d381f74911ed64f14a4944e44c9a5c031;ds=sidebyside Prettied up the output with a header. --- diff --git a/bin/mailshears b/bin/mailshears index fc20dd3..f8211b1 100755 --- a/bin/mailshears +++ b/bin/mailshears @@ -67,5 +67,22 @@ difference = [fs_accts - db_accts] # Don't output any unnecessary junk. Cron might mail it to someone. if difference.size > 0 + + # The header that we output before the list of accounts. + # Just the path of this script, and the current time. + header = "#{$0}, " + + current_time = Time.now() + if current_time.respond_to?(:iso8601) + # Somehow this method is missing on some machines. + header += current_time.iso8601.to_s + else + # Fall back to whatever this looks like. + header += current_time.to_s + end + + puts header + puts '-' * header.size # Underline the header. puts difference + puts "" end