Re: removing blanks from a file



eliminate blanks as 1st char in output file, replace
write (2,*) trim(line)
with
write (2,'(a)') trim(line)



.