home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/awk -f
- #
- # File: fixfile
- # Usage: fixfort oldfile.f >newfile.f
- #
- # Very simple awk program to remove bang comments from Fortran files.
- # Shouldn't be necessary very often: most Fortran compilers started
- # supporting bang comments in the early 80's.
- #
- $1 != "!" { print }
-