Read STDIN (SYSIN) in COBOL - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T10:57:35Zhttp://stackoverflow.com/feeds/question/938760http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/938760/read-stdin-sysin-in-cobol3Read STDIN (SYSIN) in COBOLsingpolyma2009-06-02T10:01:05Z2009-07-12T11:24:52Z
<p>I want to read the lines out of STDIN (aka SYSIN) in COBOL. For now I just want to print them out so that I know I've got them. From everything I'm reading it looks like this should work:</p>
<pre><code> IDENTIFICATION DIVISION.
PROGRAM-ID. APP.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT SYSIN ASSIGN TO DA-S-SYSIN ORGANIZATION LINE SEQUENTIAL.
DATA DIVISION.
FILE SECTION.
FD SYSIN.
01 ln PIC X(255).
88 EOF VALUE HIGH-VALUES.
WORKING-STORAGE SECTION.
PROCEDURE DIVISION.
OPEN INPUT SYSIN
READ SYSIN
AT END SET EOF TO TRUE
END-READ
PERFORM UNTIL EOF
DISPLAY ln
READ SYSIN
AT END SET EOF TO TRUE
END-READ
END-PERFORM
CLOSE SYSIN
STOP RUN.
</code></pre>
<p>That compiles (using open-cobol and cobc -x), but running it I get:</p>
<pre><code>libcob: File does not exist (STATUS = 35) File : ''
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/938760/read-stdin-sysin-in-cobol/939051#9390514Answer by Paul Mitchell for Read STDIN (SYSIN) in COBOLPaul Mitchell2009-06-02T11:39:38Z2009-06-02T11:39:38Z<p>My COBOL dates back to the DPS-6 minicomputer runnong GCOS-6 and I lasted touched that in 1992. But back then we used ACCEPT to get input from stdin.</p>
http://stackoverflow.com/questions/938760/read-stdin-sysin-in-cobol/947865#9478651Answer by singpolyma for Read STDIN (SYSIN) in COBOLsingpolyma2009-06-03T23:44:05Z2009-06-03T23:44:05Z<p>The following was suggested to me on the <a href="http://www.opencobol.org/modules/newbb/viewtopic.php?viewmode=thread&topic%5Fid=610&forum=1&post%5Fid=3111#3111" rel="nofollow">OpenCOBOL forums</a>.</p>
<pre><code>SELECT SYSIN ASSIGN TO KEYBOARD ORGANIZATION LINE SEQUENTIAL.
</code></pre>
<p>It's the keyword KEYBOARD that makes it work.</p>
<p>Apparently DISPLAY is a similar word for STDOUT, but I have not tested that.</p>
http://stackoverflow.com/questions/938760/read-stdin-sysin-in-cobol/1115841#11158410Answer by ahlatimer for Read STDIN (SYSIN) in COBOLahlatimer2009-07-12T11:19:19Z2009-07-12T11:24:52Z<p>You can just use the ACCEPT keyword to grab keyboard output. Loop through until you hit a keyword such as 'end', or you can use the hex value of EOF (1A, I believe).</p>
<p>As in:</p>
<pre><code>1000-YOUR-PARAGRAPH.
ACCEPT WS-YOUR-VARIABLE.
DISPLAY WS-YOUR-VARIABLE.
IF WS-YOUR-VARIABLE IS NOT EQUAL TO EOF
THEN GO TO 1000-YOUR-PARAGRAPH
ELSE GO TO 1090-EXIT
END-IF.
1090-EXIT.
EXIT.
</code></pre>
<p>That will take everything up to an EOL marker (e.g. return).</p>