1
0
Fork 0
mirror of https://github.com/kou029w/looks-like-github.git synced 2025-03-14 07:05:15 +00:00
looks-like-github/build
2021-08-21 03:28:20 +09:00

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