Joined December 2012
·
Posted to
Get IPs of your Network Interfaces plus your External Address
over 1 year
ago
grep is not needed for this:
grep 'inet ' | awk '{print $2}'`
This can be done in awk
awk '/inet/ {print $2}'`
Posted to
List of all neighboring ips
over 1 year
ago
Roman Gille (https://coderwall.com/r-dent) had a similar protip not that long ago:
https://coderwall.com/p/mercva
Basically ping the broadcast and view the arp table
Posted to
List all connected IP adresses in lokal network
over 1 year
ago
I needed to use -b to ping a broadcast on Debian with iputils-ping version 3:20101006-3
Achievements
169 Karma
7,492 Total ProTip Views
Beaver 3
Have at least three original repo where go is the dominant language
Forked
Have a project valued enough to be forked by someone else
Beaver
Have at least one original repo where go is the dominant language
T-Rex 3
Have at least three original repos where C is the dominant language
Opabinia
Started social coding on GitHub within 6 months of its first signs of life
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Charity
Fork and commit to someone's open source project in need
T-Rex
Have at least one original repo where C is the dominant language
Raven
Have at least one original repo where some form of shell script is the dominant language
Epidexipteryx
Have at least one original repo where C++ is the dominant language
Well I'm embarrassed. I had to facepalm myself when I realized the issue I was seeing was from people doing a rebase of master from a branch and then pushing (which is where issues really crop up from the history being changed.) So you're quite right. Can I just blame it being too early in the morning ;) I'm going to retract (delete) my above comments.