Convert unix timestamp to year month day format ?

Hello,

How do I convert unix timestamp value to 'normal' date format - to get year month and day values ?
Looks like it's easy to do using GNU date (linux systems). But how do I do tthis on AIX ?
I don't want to write C program, any ways to do that using unix shells ?

thanks

Hi ,

try this

perl -le 'print scalar localtime 1233074134'