This repository has been archived on 2026-08-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
dots/.bin/whoamip
T
2022-05-11 12:25:43 +02:00

6 lines
112 B
Bash
Executable File

#!/usr/bin/env bash
# Get local IP
ip addr show $@ | awk '/inet / {gsub(/\/.*/,"",$2); print $2}' | tail -n 1