Get local IP address in terminal on a Mac

Here's a function I wrote to get my local IPv4 address in the terminal on a Mac.

function getipv4() {
  ifconfig | grep "inet 192" | awk '{print $2}';
}

Article Type

General