in reply to Epoch to specific output

The core Time::Piece module does what you're after:

$ x=1388679108 \ > perl -MTime::Piece -e 'print gmtime($ENV{x})->strftime("%m%d%H%M")' 01021611

-- Ken