mirror of
https://github.com/kou029w/looks-like-github.git
synced 2025-01-18 16:08:01 +00:00
11 lines
166 B
Text
11 lines
166 B
Text
|
#!/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
|