The following example illustrates how you could compile a program, Myprog, using response files. The example assumes that Enter is pressed at the end of each line.
The file myprog.rsp contains the lines:
myprog.obj temp.lst, temp.grp warning"3" ans85 errlist
If you compile myprog.cbl using this response file:
cobol myprog, @myprog.rsp;
the program is compiled with the directives:
warning"3" ans85 errlist
producing myprog.obj, source listing in temp.lst, and an object listing in temp.grp.