venturitr
New member
- Feb 21, 2012
- 5
Hello everyone
I am trying to writing fortran code that edits spesific line of the text file. But I dont want to delete or edit other lines.
For example I am trying to edit 10069. line of s4t.bdf file and write that : "CONM2 2100000121000001 0.0658"
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
program f_read
open (unit = 1, file = "s4t.bdf", status = "old", action = "readwrite")
write (1,"(10070/,)") a
close(1)
endprogram f_read
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
I am trying to writing fortran code that edits spesific line of the text file. But I dont want to delete or edit other lines.
For example I am trying to edit 10069. line of s4t.bdf file and write that : "CONM2 2100000121000001 0.0658"
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
program f_read
open (unit = 1, file = "s4t.bdf", status = "old", action = "readwrite")
write (1,"(10070/,)") a
close(1)
endprogram f_read
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&