I’ve a csv file with many column along with two columns having date and time as ‘ddmmyyyy’ and ‘hhmmss’. I want to convert this file inot another csv file such as can bcp it into a sybase table.
I am using awk for that. But now i get an issue where i want to convert these date and time column to a single column with format ‘yyyy-mm-ddTHH:MM:SS’ so as to use in sybase.
How can i do this in awk.
I’ve a csv file with many column along with two columns having date and
Share
The long way using
awk:Results: