a utility to quickly get public ipv4 from AmazonAWS Checkip
I needed a utility that doesnt rely on curl.exe
from C:\Windows\System32
.
This is a batch script that I was using that did the same thing.
@echo off
curl https://checkip.amazonaws.com/ > "%appdata%\ip.dat"
type "%appdata%\ip.dat"
I wanted to remove many batch files from my projects because quite honestly batch files are fucking ugly.