first commit

This commit is contained in:
Roy
2025-06-23 21:19:51 +02:00
commit a4f9ea11f3
69 changed files with 4857 additions and 0 deletions

12
scripts/count_ip.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/bash
FILE=;
for ip in $(tail -n 5000 $FILE |cut -d ' ' -f 1 |sort |uniq);
do
{
COUNT=$(grep ^$ip $FILE |wc -l);
if
[[ "$COUNT" -gt "500" ]]; then echo "$COUNT: $ip";
fi
};
done