Linux

Linux + 僅從 mount 命令擷取 IP

  • March 9, 2019

如何從掛載輸出中僅列印 IP 列表(在行尾)

mount

netapp64:/lunggg/OracleTeam/OracleCDs on /oracds type nfs (rw,fg,hard,nointr,nolock,rsize=32768,wsize=32768,tcp,nfsvers=3,timeo=60,addr=12.156.0.212)
netapp74:/lunggg/qcdet_nfs on /applic/oradata/qcdev type nfs (rw,bg,hard,nolock,nointr,tcp,nfsvers=3,timeo=600,rsize=32768,wsize=368,addr=112.166.60.12)
netapp23:/lunggg/qcts_nfs on /applic/oradata/qctst type nfs (rw,bg,hard,nolock,nointr,tcp,nfsvers=3,timeo=600,rsize=32768,wsize=368,addr=123.10.10.12)

例如我需要得到什麼:

12.156.0.212
112.166.60.12
123.10.10.12

備註 - 我認為來自 mount 的 IP 可能位於不同的欄位中,因此需要擷取 addr=xxx.xxx.xxx.xxx

你可以使用grepand cut

~$ mount | egrep -o 'addr=[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | cut -d '=' -f 2

12.156.0.212
112.166.60.12
123.10.10.12

引用自:https://unix.stackexchange.com/questions/259808