hello,
I've made a perl script,
I will print the start hour of the script and the end hour.
I've make this
#!/usr/bin/perl
use strict;
use POSIX qw(strftime);
...code
print "Started ".strftime( '%H:%M:%S', localtime )."\n";
...code
print "Stopped ".strftime( '%H:%M:%S', localtime...