farski Posted March 15, 2013 Share Posted March 15, 2013 Lists all your network interface's IP address, and copies them to the clipboard when you select them. Currently only supports IPv4. Also I plan on adding the external IP soon. https://dl.dropbox.com/u/1400235/Alfred-IP_Addresses.zip Link to comment
CapnAverage Posted March 16, 2013 Share Posted March 16, 2013 (edited) Nice one – ipconfig rather unhelpfully doesn't return external IP address, so the easiest way to get what your current external IP address (as an IPv4) is to parse the curl output from a site that'll tell you. It's fairly easy to do this via a shell script: exip=$(curl -s http://ipecho.net/plain) echo "$exip" Hope that helps! Edited March 16, 2013 by CapnAverage Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now