Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
curl -s 'https://check.torproject.org/exit-addresses' |grep ExitAddress |awk '{print $2}'
Es muss wohl an Tor liegen.
Falls man nur die IP-Liste braucht:
Code:curl -s 'https://check.torproject.org/exit-addresses' |grep ExitAddress |awk '{print $2}'
curl -s 'https://check.torproject.org/exit-addresses' | awk '/ExitAddress/ {print $2}'
Useless use of grep?
Es muss wohl an Tor liegen.