[GH-ISSUE #10] How to check a list of IPs against the blacklist? #6

Closed
opened 2026-02-28 12:09:03 +03:00 by kerem · 1 comment
Owner

Originally created by @SunnyVirk007 on GitHub (Aug 26, 2022).
Original GitHub issue: https://github.com/adionditsak/blacklist-check-unix-linux-utility/issues/10

How to check a list of IPs against the blacklist?

PS: Sorry, I know it's not an issue but a query, I didn't know where else to place this.

Originally created by @SunnyVirk007 on GitHub (Aug 26, 2022). Original GitHub issue: https://github.com/adionditsak/blacklist-check-unix-linux-utility/issues/10 How to check a list of IPs against the blacklist? PS: Sorry, I know it's not an issue but a query, I didn't know where else to place this.
kerem closed this issue 2026-02-28 12:09:14 +03:00
Author
Owner

@adionditsak commented on GitHub (Oct 30, 2022):

Not really relevant for this repository, but you can do it in many ways in the shell, with a simple one below.

Let's say you have a file called ips.txt with a list of IPs.

while IFS= read -r LINE; do
    ./bl "$LINE"
done < ips.txt

This would run the command with the input from each line which would be the IP.

Closing this issue.

<!-- gh-comment-id:1296346108 --> @adionditsak commented on GitHub (Oct 30, 2022): Not really relevant for this repository, but you can do it in many ways in the shell, with a simple one below. Let's say you have a file called `ips.txt` with a list of IPs. ``` while IFS= read -r LINE; do ./bl "$LINE" done < ips.txt ``` This would run the command with the input from each line which would be the IP. Closing this issue.
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/blacklist-check-unix-linux-utility#6
No description provided.