Skip to content

A5M1/IPC

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

010fe26 · Feb 5, 2024

History

5 Commits
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024
Feb 5, 2024

Repository files navigation

IPC

a utility to quickly get public ipv4 from AmazonAWS Checkip

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