#!/bin/sh # create the hosts cache directory if it doesn't already exists if [ ! -d $HOME/.cache/hosts ] ; then mkdir $HOME/.cache/hosts fi curl http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts > $HOME/.cache/hosts/hosts_work curl http://sbc.io/hosts/hosts > $HOME/.cache/hosts/hosts_fun exit 0