hey
Im trying to (from a command line) direct output to a file with a fixed format.
Initially what I have done is padded all of my field strings with the correct number of blank spaces. Therefore if i could output each field side by side with no spaces inbetween them in one continuous string, that would be ideal. The closest thing I have got to this is exporting with DEL format, but then i would have to remove all of the quotations and commas with some program but my superiors do not want me to do this.
I have also tried piping my results to a file but im unsure how to make each field a specific length.
I am looking, i guess, for one of two answers
1) How can I output all fields in one continuous string without any spaces inbetween?
2) If i am just using standard output (or piping) how do i make a specific field a constant specified length?
Thank you