4 lines
78 B
Bash
4 lines
78 B
Bash
|
#!/bin/bash
|
||
|
IP=`curl ifconfig.co`
|
||
|
echo 'home_ip = "'$IP'"' > var_homeip.tfvar
|