Determine the TIME is takes to complete

So it looks like what I need is is a requested feature … http://forum.mikrotik.com/t/built-in-function-library/117288/1

using bash its easy
SECONDS=0

do some work

duration=$SECONDS
echo “$(($duration / 60)) minutes and $(($duration % 60)) seconds elapsed.”