I am trying to break up a file into two fields. The second field being about 400 lines long using the following code:
awk '{FS=" ";RS="|"} ; {print $1}' letter.bcp
and I get the following error:
awk: record `{\colortbl\red0\gree...' too long
record number 1
Can anyone help me with this?
awk '{FS=" ";RS="|"} ; {print $1}' letter.bcp
and I get the following error:
awk: record `{\colortbl\red0\gree...' too long
record number 1
Can anyone help me with this?