diff --git a/Whitelisting-and-Blacklisting.md b/Whitelisting-and-Blacklisting.md
index f0aa315..9b8f92a 100644
--- a/Whitelisting-and-Blacklisting.md
+++ b/Whitelisting-and-Blacklisting.md
@@ -1,5 +1,3 @@
-****[ This page will be updated to reflect the new system introduced in Pi-Hole 2.6.x, will be updated soon, more info on the new system [here](https://github.com/pi-hole/pi-hole/wiki/The-%22pihole%22-Command) ]****
-
###What to Whitelist or Blacklist
[this extension for chrome](https://chrome.google.com/webstore/detail/whitelist-assistant-by-dn/fdmpekabnlekabjlimjkfmdjajnddgpc) can help you in finding out which domains you need to whitelist.
@@ -46,15 +44,15 @@ Domains passed are parsed by the script to ensure they are valid domains. If a d
- whitelist.sh domain1 [domain2...] |
+ pihole -w domain1 [domain2...] |
Attempt to add one or more domains to the whitelist and reload dnsmasq. |
- whitelist.sh -nr domain1 [domain2...] |
+ pihole -w -nr domain1 [domain2...] |
Attempt to add one or more domains to the whitelist, but do not reload dnsmasq. |
- whitelist.sh -f domain1 [domain2...] |
+ pihole -w -f domain1 [domain2...] |
Attempt to add one or more domains to the whitelist and force dnsmasq to reload |
@@ -67,15 +65,15 @@ Add `-d` as an additional argument (e.g `pihole -w -d domain1 [domain2...]`)
- blacklist.sh domain1 [domain2...] |
+ pihole -b domain1 [domain2...] |
Attempt to add one or more domains to the blacklist and reload dnsmasq. |
- blacklist.sh -nr domain1 [domain2...] |
+ pihole -b -nr domain1 [domain2...] |
Attempt to add one or more domains to the blacklist, but do not reload dnsmasq. |
- blacklist.sh -f domain1 [domain2...] |
+ pihole -b -f domain1 [domain2...] |
Attempt to add one or more domains to the blacklist and force dnsmasq to reload |