of URL blockers that rely on `hosts` files do not conform to the standard which
allows multiple hosts on a single line.
+`--blacklist <blacklistfile>`, or `-x <blacklistfile>`: Append the given blacklist file
+in hosts format to the generated hosts file.
+
+`--whitelist <whitelistfile>`, or `-w <whitelistfile>`: Use the given whitelist file
+to remove hosts from the generated hosts file.
+
+
## How do I control which sources are unified?
Add one or more *additional* sources, each in a subfolder of the `data/`
"ignoring non-necessary lines "
"(empty lines and comments).",
)
+ parser.add_argument(
+ "--whitelist",
+ "-w",
+ dest="whitelistfile",
+ default="",
+ help="Whitelist file to use while generating hosts files.",
+ )
+ parser.add_argument(
+ "--blacklist",
+ "-x",
+ dest="blacklistfile",
+ default="",
+ help="Blacklist file to use while generating hosts files.",
+ )
global settings