Group: comp.lang.fortran · Group Profile · Search for Temporaryfile in comp.lang.fortran
Author: glen herrmannsfeldt
Date: Dec 12, 2006 11:16
...WRITE(18,*) "XY" ENDDO The put the output through the unix tr command, (versions exist for Windows, too), to convert existing newlines to spaces and XY to the appropriate line ending characters, something like: tr '\r\nXY' ' \r\n' < temporaryfile outputfile Yes, its a kludge, but it does get around record limitations for file systems using line ending characters. -- glen
|