Skip to content

Instantly share code, notes, and snippets.

@sport4minus
Created January 31, 2024 07:54
Show Gist options
  • Save sport4minus/bdd5358a12e6588cd43c2547ca51a461 to your computer and use it in GitHub Desktop.
Save sport4minus/bdd5358a12e6588cd43c2547ca51a461 to your computer and use it in GitHub Desktop.
shell script to quickly list ip adresses of interfaces
for ifname in `ipconfig getiflist`; do echo $ifname: `ipconfig getifaddr $ifname`; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment