Created
September 13, 2018 07:08
-
-
Save bitnot/5b83be88e5125ea58eddf9062b74b14e to your computer and use it in GitHub Desktop.
Gets first IP address of your network interface(s)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MYIP=`ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1' | head -n 1` | |
echo $MYIP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment