I have an input file called parcel that has fixed length lines of 810 charters long. I have a created the following script to delimit each line into comma delimted fixed legnth fields. It seems to be working fine until line 129048, at which point there appears to be an unexpected formting charters set. Vi shows the charter set as <8d><8d>, while text pad shows it as two squares. I am at a loose as to what this represents and as such how I would search and replace it ?
cat parcel| gawk --re-interval 'BEGIN{ FIELDWIDTHS="9 3 3 40 40 40 60 60 60 20 2 9 4 8 8 3 3 32 4 8 20 2 220 12 12 12 12 12 12 4 12 12 12 8 11 8 12"; } RT { $0 = RT; print $1,","$2,","$3,","$4,","$5,","$6,","$7,","$8,","$9,","$10,","$11,","$12,","$13,","$14,","$15,","$16,","$17,","$18,","$19,","$20,","$21,","$22,","$23,","$24,","$25,","$26,","$27,","$28,","$29,","$30,","$31,","$32,","$33,","$34,","$35,","$36,","$37; }'> tempfile4
cat parcel| gawk --re-interval 'BEGIN{ FIELDWIDTHS="9 3 3 40 40 40 60 60 60 20 2 9 4 8 8 3 3 32 4 8 20 2 220 12 12 12 12 12 12 4 12 12 12 8 11 8 12"; } RT { $0 = RT; print $1,","$2,","$3,","$4,","$5,","$6,","$7,","$8,","$9,","$10,","$11,","$12,","$13,","$14,","$15,","$16,","$17,","$18,","$19,","$20,","$21,","$22,","$23,","$24,","$25,","$26,","$27,","$28,","$29,","$30,","$31,","$32,","$33,","$34,","$35,","$36,","$37; }'> tempfile4