|
From: Orlando P. H. <he...@ss...> - 2001-08-09 19:39:14
|
>
> Message: 5
> From: Al Greynolds <agr...@br...>
> To: "'min...@li...'"
> <min...@li...>
> Date: Thu, 9 Aug 2001 11:34:08 -0700
> Subject: [Mingw-users] Line terminators in text files
>
> Is there any way for a g77 created program under MinGW to
> automatically write a text file with CRLF line terminators
> instead on the unix LF?
>
> Al Greynolds
> V.P. Research
> BRO, Inc.
> Tucson, AZ
Mingw g77 writes text files with CRLF line terminators
automatically.
Try:
open (unit=10,file='file.txt')
do i=1,1000
write(10,100)i
100 format('I= ',i6,' ok')
enddo
stop
end
Ing. Orlando P. Hevia
he...@ss...
Santa Fe-Argentina
|