processing a file full of unix time strings to human readble
Posted
by skymook
on Stack Overflow
See other posts from Stack Overflow
or by skymook
Published on 2010-05-17T14:16:17Z
Indexed on
2010/05/17
14:20 UTC
Read the original article
Hit count: 202
I am processing a file full of unix time strings. I want to convert them all to human readable.
The file looks like so:
1153335401
1153448586
1153476729
1153494310
1153603662
1153640211
Here is the script:
#! /bin/bash
FILE="test.txt"
cat $FILE | while read line; do
perl -e 'print scalar(gmtime($line)), "\n"'
done
This is not working. The output I get is Thu Jan 1 00:00:00 1970 for every line. I think the line breaks are being picked up and that is why it is not working. Any ideas? I'm using Mac OSX is that makes any difference.
© Stack Overflow or respective owner