mirror of
https://github.com/alecmuffett/real-world-onion-sites.git
synced 2024-10-01 01:06:18 -04:00
36 lines
735 B
Bash
Executable File
36 lines
735 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd directory || exit 1
|
|
|
|
tor_curl() {
|
|
curl -x socks5h://127.0.0.1:9150/ "$@"
|
|
return $?
|
|
}
|
|
|
|
check_onion() {
|
|
is_up=true
|
|
for url in `awk '{print $1}' < urls` ; do
|
|
if tor_curl $url >curl.out~ 2>curl.err~ ; then
|
|
echo ":thumbsup:"
|
|
else
|
|
is_up=false # one bad apple
|
|
echo ":sos:"
|
|
fi
|
|
done >check-status
|
|
if $is_up || [ ! -f check-date ] ; then # overwrite the datestamp
|
|
date -u "+%Y-%m-%dT%H:%M:%SZ" >check-date
|
|
fi
|
|
}
|
|
|
|
for category in * ; do
|
|
echo ":::: $category ::::"
|
|
cd $category || exit 1
|
|
for onion in * ; do
|
|
echo "---- $onion ----"
|
|
cd $onion || exit 1
|
|
check_onion
|
|
cd ..
|
|
done
|
|
cd ..
|
|
done
|