looks-like-github/build

11 lines
166 B
Text
Raw Normal View History

2021-08-21 03:28:20 +09:00
#!/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