dr_te_z
New User
Joined: 08 Jun 2007 Posts: 71 Location: Zoetermeer, the Netherlands
|
|
|
|
Yeah, I know: a PC is only usefull as a driver for your 3270-emulation program... But sometimes you get large-old programs, whit a lot of old-code commented out (not allowed to delete (company standard)) then the PC can be of any help.
Make an extraction of your source omitting all the comments and numbering
Code: |
SORT FIELDS=COPY
OMIT COND=(07,01,EQ,C'*',OR,
07,01,EQ,C'/'),FORMAT=CH
OUTREC FIELDS=(6X,07,66,8X)
END
|
and bring the result to the pc as a *.cbl file.
Download this ynohoo.braindog.org/CobTree/ and you have a free-usefull tool to analyse the code. You've got a nice overview of the sections/paragraps and with a "find" command you're not confronted with "history lessons" (= commented old source).
When you really miss those syntax colors, try this www.jedit.org/ it does support cobol syntax colors by default. |
|