5 lines
143 B
Text
5 lines
143 B
Text
|
#!/bin/bash
|
||
|
# eigene öffentliche ip anzeigen
|
||
|
|
||
|
wget http://checkip.dyndns.org/ -q -O - |
|
||
|
grep -Eo '\<[[:digit:]]{1,3}(\.[[:digit:]]{1,3}){3}\>'
|