#!/bin/bash while [ true ]; do printf "Fetching from $TARGET." curl --silent --socks5 127.0.0.1:9050 $TARGET > /dev/null; echo " Ok." sleep 10; done;