Skip to content

Instantly share code, notes, and snippets.

@TheFlash2k
Created June 2, 2023 12:32
Show Gist options
  • Save TheFlash2k/f08ca214b902c7fe07797be3516acd3b to your computer and use it in GitHub Desktop.
Save TheFlash2k/f08ca214b902c7fe07797be3516acd3b to your computer and use it in GitHub Desktop.
Lists local IP of an interface
#!/bin/bash
if [[ $# != 1 ]]; then
echo "No interface specified!"
exit 1
fi
ip a s $1 | grep inet | cut -d $'\n' -f 1 | cut -d ' ' -f 6 | cut -d '/' -f 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment