mirror of
https://github.com/kou029w/looks-like-github.git
synced 2025-01-18 16:08:01 +00:00
10 lines
166 B
Bash
Executable file
10 lines
166 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
> hosts
|
|
> uBlacklist.txt
|
|
|
|
while read -a name; do
|
|
echo "0.0.0.0 ${name}" >> hosts
|
|
echo "*://${name}/*" >> uBlacklist.txt
|
|
done < why
|