12345678910111213 |
- /root/info.sh --invalid-logins \
- | cut -d\ -f11 \
- | xargs -I{} sh -c "geoiplookup {} \
- | cut -d\ -f4 \
- | tr , ' ' \
- | grep -f - countries.txt \
- | cut -f 2,3" > shamecoords.txt
- uniq -c shamecoords.txt \
- | sort -k 1 \
- | awk 'BEGIN{print"[["}{print $3","$2","$1","}END{print"]];"}' > population909500.json
|