我需要使用正则表达式从文件中提取重合线:
这是文件的内容:
netbios-ns 137/tcp # NETBIOS Name Service
netbios-ns 137/udp
hkp 11371/tcp # OpenPGP HTTP Keyserver
hkp 11371/udp # OpenPGP HTTP Keyserver
bprd 13720/tcp # VERITAS NetBackup
bprd 13720/udp
vopied 13783/udp
我需要使用137
with过滤grep
:
grep -n -e "137" file
输出必须是:
netbios-ns 137/tcp # NETBIOS Name Service
netbios-ns 137/udp