Wow. I am really impressed at the response I've received to this request for help.
This is amazing. I wish to extend a BIG thanks to everyone who chimed in here with advice.
I've applied the AWK suggestion provided by Telengard, but there seem to be a bit of unexpected output in the resulting file. From what I can tell, there are now 80 characters on each line, but embedded at the end of the real text on each line is a
^M, which looks like a linefeed. I didn't get that on my other set of files that I applied the AWK command against. Just this one batch.
Code:
awk '{printf "%-80s\n", $0}' onefile > twofile
The recipient of this file is trying to import it into some kind of system that expects a very strict format of data being at exact character locations. The import failed and I'm wondering if it's due to these embedded
^M characters. Does anyone know how I can scrub these from the output?
Screen capture attached.
Thanks again for the help provided thus far and for any additional help you may send my way.
Appreciatively,
di11rod