9 lines
173 B
Plaintext
9 lines
173 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
while ! curl -s -N --socks5 127.0.0.1:9050 'https://check.torproject.org/' | grep -qm1 Congratulations
|
||
|
do
|
||
|
sleep 0.5
|
||
|
done
|
||
|
|
||
|
echo $(cat /var/lib/tor/svc/hostname)
|