Grep

使用 ifconfig 僅顯示 IP 地址和子網遮罩的命令

  • September 26, 2021

我的 Linux 實驗室需要幫助。有人知道命令的組合符合這個練習嗎?

查看 /sbin/ifconfig 的輸出。寫一行只顯示 IP 地址和子網遮罩。(使用head;grep;tr -s;cut;)

這就是我到目前為止所得到的:

/sbin/ifconfig | grep -w "inet"

我相信這會達到預期的效果

/sbin/ifconfig | grep -Po '(?<=\binet )[^/]+/\w+|(?<=\binet6 )[^/]+/\w+'

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