powershell -Command "(Get-NetIPAddress -AddressFamily IPv4 | Where-Object {$_.InterfaceAlias -notlike '*Loopback*'} | Select-Object -First 1).IPAddress"
hostname -I | awk '{print $1}' || ifconfig | grep -A1 "en0\|eth0" | grep "inet " | awk '{print $2}' | sed 's/addr://'