Skip to content

Instantly share code, notes, and snippets.

@x3ric
Last active June 12, 2024 13:24
Show Gist options
  • Save x3ric/823506745d36411dab62d3588b2d9776 to your computer and use it in GitHub Desktop.
Save x3ric/823506745d36411dab62d3588b2d9776 to your computer and use it in GitHub Desktop.
Get ip of a website
#!/bin/env bash
if [[ -z $1 ]]; then
echo "usage --> ipofsite kernel.org"
else
ping -c 1 "$1" | grep PING | cut -d " " -f 3 | sed 's/[()]//g'
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment