Skip to content

Instantly share code, notes, and snippets.

@hoyangtsai
Created January 1, 2022 05:14
Show Gist options
  • Save hoyangtsai/76080e46704920ba049b6fcf0e1ece36 to your computer and use it in GitHub Desktop.
Save hoyangtsai/76080e46704920ba049b6fcf0e1ece36 to your computer and use it in GitHub Desktop.
#shell get local ip address #command
#!/bin/bash
IP=`ifconfig | grep "inet " | grep -v 127.0.0.1 | cut -d\ -f2`
echo "$IP"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment