I am having a very hard time with scripting in OpenVMS I have a certain output in a file called test.txt .For example :
[WWEWE@http-lx-as code]$ cat test.txt
** Configuration for file "MULTINET:NETWORK_DEVICES.CONFIGURATION" **
Device Adapter CSR Address Flags/Vector
------ ------- ----------- ------------
se0 (Shared VAX/VMS Ethernet) -NONE- -NONE- -NONE-
s10 (Serial Line IP) -NONE- -NONE- -NONE-
dn0 (IP over DECNet link) -NONE- -NONE- -NONE-
I have written a script in Linux which helps to pick up all the information under the device column in this case se0,s10,dn0. Can we do a similar thing in OPEN VMS
The Linux script is as follows : SCRIPT :
for i in `cat test.txt 2>/dev/null |egrep '^[a-z]' |grep -v '\*\*' | awk '{print $1}'`
> do
> echo Begin-interface: $i
> done
OUTPUT :
Begin-interface: se0
Begin-interface: s10
Begin-interface: dn0
Let me know if it can be achieved, Thanking you in advance
Assuming that you need anything in the first column below the line starting with '-' you can try the following in a command file, e.g. extract_if.com
Run this script using:
The output should be as specified.
It seems you are familiar with AWK. You can also install GAWK for OpenVMS.