I have a number of scripts that I would like to determine the TIME is takes to complete.
In Perl its very easy to do but I have not been able to figure out how to implement similar commands under RouterOS.
In Perl to accomplish this task I would:
my $temp = time();
my $Start = $temp;
...............
.............
...............
...........
my $End = time();
my $Diff = $End - $Start;
print "Process took ".$Diff." seconds to run.\n";
Can someone provide the correct directive sequence that would work under RouterOS please?