Update 2025-04-13_16:21:50

This commit is contained in:
root
2025-04-13 16:21:50 +02:00
commit 37e70e30e8
24 changed files with 985 additions and 0 deletions

9
ipinipset.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
IPSETS=$(ipset list -n| sort)
for i in $IPSETS; do
echo $i
ipset list $i | grep "^$1"
# echo ""
done