Aug 5, 2003 #1 krolaprog Programmer Aug 5, 2003 1 CL There is some function or routine in acucobol that permit to capture the tty in Unix, as for example to identify to the users.
There is some function or routine in acucobol that permit to capture the tty in Unix, as for example to identify to the users.
Aug 18, 2003 #2 fdf MIS Jul 30, 2003 38 US Try this: 1. working storage 01 SYSTEM-INFORMATION. 10 OPERATING-SYSTEM PIC X(10). 10 USER-ID PIC X(12). 10 STATION-ID PIC X(12). 10 FILLER PIC X(65). 2. procedure division ACCEPT SYSTEM-INFORMATION FROM SYSTEM-INFO. Upvote 0 Downvote
Try this: 1. working storage 01 SYSTEM-INFORMATION. 10 OPERATING-SYSTEM PIC X(10). 10 USER-ID PIC X(12). 10 STATION-ID PIC X(12). 10 FILLER PIC X(65). 2. procedure division ACCEPT SYSTEM-INFORMATION FROM SYSTEM-INFO.