milis/bin/hostlari_yenile

12 lines
403 B
Plaintext
Raw Permalink Normal View History

2017-04-20 04:25:27 +02:00
#!/bin/bash
2017-04-20 04:28:06 +02:00
# /etc altındaki hosts dosyasını yeniler ve istenmeyen reklam ve sitelerden korunulur.
2017-04-20 04:25:27 +02:00
cd /tmp
#wget http://sbc.io/hosts/hosts
wget https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts
mv /etc/hosts /tmp/hosts-eski
mv hosts /etc/hosts
2017-04-20 04:28:06 +02:00
# eğer home dizini altında .hosts dosyanız varsa onu /etc/hosts dosyasına ekler.
2017-04-20 04:25:27 +02:00
if [ -f ~/.hosts ]; then
cat ~/.hosts >> /etc/hosts
fi