williamr/convert_time.pl
changeset 3 8b87ea768cb8
equal deleted inserted replaced
2:a600c1a596f7 3:8b87ea768cb8
       
     1 #! perl
       
     2 
       
     3 # Copyright (c) 2009 Symbian Foundation Ltd
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of the License "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Symbian Foundation Ltd - initial contribution.
       
    11 # 
       
    12 # Contributors:
       
    13 #
       
    14 # Description:
       
    15 # Convert timestamps into localtime.
       
    16 
       
    17 my $line;
       
    18 while ($line = <>)
       
    19   {
       
    20   chomp $line;
       
    21   my $timestring = localtime($line);
       
    22   print "$timestring\n";
       
    23   }