Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 537 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 537 Bytes

IPC

a utility to quickly get public ipv4 via curl from IF Config

Project background:

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 also wanted to remove many batch files from my projects because quite honestly batch files are fucking ugly.

See License

ABGSL V2