I have a comma-separated file, with the first column as a date of the format 01/31/2010
that I want to change into epoch time, such that the file “file.csv”:
01/30/2010,1,"hi"
01/31/2010,3,"bye"
will change into “output.csv”:
1264809600,1,"hi"
1264896000,3,"bye"
I know the command line date -d “01/30/2010” +%s will work, but only on a single date, and I need to feed it into a table, so, is there a way to use awk with some func():
cat file.csv | awk -F, 'print func($1)","$2","$3}'
Since I don’t really care how I do this, alternatively, how would I change a date in excel into epoch, when the string is mm/dd/yyyy…
Or, invoking
date: