Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?
You must be signed in to comment.
commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
export PORT=11211; ss -an4 | sed -n '/ESTAB.*:'$PORT' .*:/{s/.* \([^:]\+\):.*:.*/\1/p}' | sort | uniq -c | sort -nr
It consists of three parts. A search:'/ESTAB.*:'$PORT' .*:/
A replace:s/.* \([^:]\+\):.*:.*/\1/
and printsed -n ... p
export PORT=11211; ss -an4 | grep -E "ESTAB.*$PORT" | awk '{print $5}' | awk -F: '{print $1}' | sort | uniq -c | sort -nr
34 10.1.1.184 33 10.1.1.187 33 10.1.1.181 32 10.1.1.178 31 10.1.1.183 30 10.1.1.199 29 10.1.1.179 28 10.1.1.182 27 10.1.1.185 26 10.1.1.186 4 10.1.1.189export PORT=11211; ss -an4 | sed -n '/ESTAB.*:'$PORT' .*:/{s/.* \([^:]\+\):.*:.*/\1/p}' | sort | uniq -c | sort -nr
256 10.1.1.190PORT=22 ; ss -n4 -o state established "( dport = :$PORT or sport = :$PORT )" | awk -F ':| +' '$1 ~ /[0-9]+/ {print $5}' | sort | uniq -c | sort -nr
I also noticed that when I had PORT=22 the 'grep -E "ESTAB.*$PORT"' also matched port 8022. It should probably at least be changed to:grep -E "ESTAB.*:$PORT "
I also tried with lsof, but that was much slower:PORT=ssh ; lsof -itcp:$PORT -stcp:established -n |awk -F '>|:| +' '$2 ~ /[0-9]+/ {print $11}' | sort | uniq -c | sort -rn