sed:change:change_lines_in_a_file
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
sed:change:change_lines_in_a_file [2021/01/21 01:21] – peter | sed:change:change_lines_in_a_file [2021/01/21 01:27] (current) – peter | ||
---|---|---|---|
Line 2: | Line 2: | ||
This script will obtain the current IP address for different sites and update the /etc/hosts file with the correct IP address. | This script will obtain the current IP address for different sites and update the /etc/hosts file with the correct IP address. | ||
+ | |||
+ | It could be run through Cron to ensure that the host file keeps an updated list of IPs. | ||
---- | ---- | ||
Line 14: | Line 16: | ||
1.2.3.4 | 1.2.3.4 | ||
1.2.3.4 | 1.2.3.4 | ||
+ | 1.2.3.4 | ||
</ | </ | ||
Line 20: | Line 23: | ||
---- | ---- | ||
- | ===== Script ===== | + | ===== Script |
<file bash update_hosts.sh> | <file bash update_hosts.sh> | ||
Line 38: | Line 41: | ||
update_ip_address strict.bing.com | update_ip_address strict.bing.com | ||
update_ip_address forcesafesearch.google.com | update_ip_address forcesafesearch.google.com | ||
+ | update_ip_address safe.duckduckgo.com | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Script using nslookup ===== | ||
+ | |||
+ | <file bash update_hosts.sh> | ||
+ | #!/bin/bash | ||
+ | |||
+ | update_ip_address() { | ||
+ | file=/ | ||
+ | if [[ $(grep $1 $file) ]]; then | ||
+ | IP=$(nslookup -query=A $1 8.8.8.8 | grep ' | ||
+ | grep -oE ' | ||
+ | sed -i "/$1/ s/ | ||
+ | fi | ||
+ | } | ||
+ | |||
+ | update_ip_address restrict.youtube.com | ||
+ | update_ip_address restrictmoderate.youtube.com | ||
+ | update_ip_address strict.bing.com | ||
+ | update_ip_address forcesafesearch.google.com | ||
+ | update_ip_address safe.duckduckgo.com | ||
</ | </ | ||
Line 51: | Line 78: | ||
204.79.197.220 | 204.79.197.220 | ||
216.239.38.120 | 216.239.38.120 | ||
+ | 52.142.126.100 | ||
</ | </ |
sed/change/change_lines_in_a_file.1611192116.txt.gz · Last modified: 2021/01/21 01:21 by peter