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