I have a script that re-formats comma-delimited data as follows:
I'd like to change the print statement to OMIT the 1st line of the file...
I know this is easy stuff here; but I'm not finding a working sollution...
TIA,
-Allen
Code:
BEGIN{
FS=",";OFS=",";
}
{
gsub(" 0:00:00","") ;$3=tolower($3);$14=tolower($14);$16=tolower($16); print
}
I'd like to change the print statement to OMIT the 1st line of the file...
I know this is easy stuff here; but I'm not finding a working sollution...
TIA,
-Allen