Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> linux通過Shell獲得本機ip地址方法

linux通過Shell獲得本機ip地址方法

日期:2017/2/7 16:55:00      編輯:Linux教程

通過Shell獲得本機IP地址方法,直接上代碼:

IP=`ifconfig  | grep  'inet addr:' | grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'`;
echo $IP;

如果想獲得第一個IP地址的話,可以在grep ‘inet addr:’增加參數-m 1即可

Copyright © Windows教程網 All Rights Reserved