在Tor上做一个实验,破坏网络的性能。我需要一个脚本来记录时间戳,运行命令"proxychains iperf3 -c "ip地址,并将结果发送到.txt。我需要每15分钟24/7运行一次。保持清醒越来越烦人。Thansk!
发布于 2016-05-09 08:47:01
您可以从以下内容开始:
touch mylogfile.txt
while true
do
proxychains iperf3 -c "ip address" >> mylogfile.txt
sleep 900
done如果您想在没有crontab的情况下运行
https://stackoverflow.com/questions/37111195
复制相似问题