Skip to content

Instantly share code, notes, and snippets.

@iflamed
Created June 14, 2021 05:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iflamed/d3037937045cbac878e55e2ae658aaa7 to your computer and use it in GitHub Desktop.
Save iflamed/d3037937045cbac878e55e2ae658aaa7 to your computer and use it in GitHub Desktop.
获取linux/mac 主机IP地址
ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v 169.254|grep -v 0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:" | head -n 1
@iflamed
Copy link
Author

iflamed commented Jun 14, 2021

export HOST_IP=ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v 169.254|grep -v 0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:" | head -n 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment