我在 OpenVMS 中编写脚本非常困难,我在一个名为 test.txt 的文件中有一定的输出。例如:
[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-
我在 Linux 中编写了一个脚本,在本例中帮助获取设备列下的所有信息 se0、s10、dn0。我们可以在 OPEN VMS 中做类似的事情吗
Linux 脚本如下: 脚本:
for i in `cat test.txt 2>/dev/null |egrep '^[a-z]' |grep -v '\*\*' | awk '{print $1}'`
> do
> echo Begin-interface: $i
> done
输出 :
Begin-interface: se0
Begin-interface: s10
Begin-interface: dn0
能不能实现请告诉我,先谢谢了