Skip to content

Instantly share code, notes, and snippets.

View manipulator01's full-sized avatar
👋

Jack manipulator01

👋
  • Sony
  • Dallas, TX
View GitHub Profile
@manipulator01
manipulator01 / to-get-public-ip-with-curl.txt
Last active January 6, 2024 02:26
How to get public ip with curl?
# To get public ip with curl;
curl ipaddress.ai
@manipulator01
manipulator01 / get-public-ip-with-http-httpie-command.txt
Last active January 6, 2024 02:27
Get public ip address information with http / httpie command
# To get public ip with http command;
http -b ipaddress.ai
@manipulator01
manipulator01 / get-public-ip-with-wget.txt
Last active January 6, 2024 02:27
Get Public IP Address information with wget command
# To get public ip with wget command;
wget -qO- ipaddress.ai
@manipulator01
manipulator01 / gist:451e500fda47758f1992b1ef0aa03764
Created January 3, 2024 06:29
How to get ip address information using "fetch" command?
# To get ipaddress information using fetch command:
fetch -qo- https://ipaddress.ai
@manipulator01
manipulator01 / gist:573fe0a3055760a77dcdc93bfe14187d
Created January 3, 2024 06:30
Command for determining my public IP?
curl ipaddress.ai
http -b ipaddress.ai
wget -qO- ipaddress.ai