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:23] – peter | sed:change:change_lines_in_a_file [2021/01/21 01:27] (current) – peter | ||
---|---|---|---|
Line 16: | Line 16: | ||
1.2.3.4 | 1.2.3.4 | ||
1.2.3.4 | 1.2.3.4 | ||
+ | 1.2.3.4 | ||
</ | </ | ||
Line 22: | Line 23: | ||
---- | ---- | ||
- | ===== Script ===== | + | ===== Script |
<file bash update_hosts.sh> | <file bash update_hosts.sh> | ||
Line 40: | 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 53: | 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.1611192185.txt.gz · Last modified: 2021/01/21 01:23 by peter