Created
April 21, 2016 19:20
-
-
Save adamhrv/d6518bf25cad51f9148bac450249f6b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adadvisor.net | |
adnxs.com | |
btrll.com | |
casalemedia.com | |
demdex.net | |
doubleclick.net | |
everesttech.net | |
liverail.com | |
mixpanel.com | |
mxpnl.com | |
newrelic.com | |
nexac.com | |
nr-data.net | |
openx.net | |
pubmatic.com | |
rfihub.com | |
rfihub.net | |
rlcdn.com | |
ru4.com | |
rubiconproject.com | |
tapad.com | |
tubemogul.com | |
walkme.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
# Block list of URLs for OSX from line-delimited text file
# This script will append the list of URLs to your /etc/hosts file and redirect it to your localhost (127.0.0.1)
sudo -s
# Uncomment next line to make a backup of your hosts file first
# cp /etc/hosts /etc/hosts.bkup.adblockers
cat this-file.txt | awk '{print "127.0.0.1\t"$0}' >> /etc/hosts