I am not a programmer. I know a couple of unix/linux commands (do not know awk).
I need to extract text lines that contain a specific sequence of string characters.
Here is my example:
strings -f -n30 i15app.fmb | grep -i getApplQuota
The output for this is :
i15app.fmb: v_return := stud.i36pkg.getApplQuota(:b6.igxquota,
I need to also extract a number of lines of text after this result.
For anybody that is wondering, I need to extract the lines from an Oracle forms program and do not have access to Forms Developer.
Is this possible?
Regards,
Phlip
strings -f -n30 i15app.fmb | grep -i getApplQuota |wc -l(2) looks pretty much complicated