Which terminal command to get just IP address and nothing else?

后端 未结 29 1326
春和景丽
春和景丽 2020-12-04 06:16

I\'m trying to use just the IP address (inet) as a parameter in a script I wrote.

Is there an easy way in a unix terminal to get just the IP address, rather than loo

29条回答
  •  时光说笑
    2020-12-04 06:42

    Use the following command:

    /sbin/ifconfig $(netstat -nr | tail -1 | awk '{print $NF}') | awk -F: '/inet /{print $2}' | cut -f1 -d ' '
    

提交回复
热议问题