6 lines
123 B
Bash
6 lines
123 B
Bash
|
|
#!/bin/zsh
|
||
|
|
cd /tmp/
|
||
|
|
curl -o resolv.conf -L "https://api.opennicproject.org/geoip/?resolv&ipv=4"
|
||
|
|
sudo mv resolv.conf /etc/
|
||
|
|
|