Last Updated: February 25, 2016
·
1.133K
· chrishale

Get you local wifi ip

I find this useful for when I need to get my local wifi ip address to test on another device:

ipconfig getifaddr en1

and to copy it to your clipboard:

ipconfig getifaddr en1 | pbcopy

I use this as an alias:

alias ip="ipconfig getifaddr en1 | pbcopy"

Well good.