version 1.0.0, 2013-10-24 : Initial version
Adding the date and time to any command output using perl
Add the date before every lines a program / command outputs is easy with perl!This commands adds the date and time to each lines of the "my_command" output.
my_command | perl -pe'$_=localtime()." $_"'