in reply to Subtracting minutes from a string

turn string into numbers (time), manipulate time, turn time into string Re^2: Date plus Time sort from file ( Time::Piece->strptime/strftime example, Time::Piece
$ perl -MTime::Piece -le " my $now = localtime; print $now; print $now + + 60 * 30 " Thu Aug 15 06:03:23 2013 Thu Aug 15 06:33:23 2013

Replies are listed 'Best First'.
Re^2: Subtracting minutes from a string ( Time::Piece->strptime )
by Cristoforo (Curate) on Aug 15, 2013 at 23:15 UTC
    Thank you! A new tool in my toolkit.