From 832feef503c6f0071cb9167122ed1c7153b56538 Mon Sep 17 00:00:00 2001 From: Mason Rowe Date: Thu, 3 Oct 2019 23:27:00 -0400 Subject: [PATCH] changed wget to curl --- yabs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yabs.sh b/yabs.sh index 037e829..57d223d 100755 --- a/yabs.sh +++ b/yabs.sh @@ -33,8 +33,8 @@ echo -e "Disk : $TOTAL_DISK" DATE=`date -Iseconds | sed -e "s/:/_/g"` IPERF_PATH=/tmp/$DATE/iperf mkdir -p $IPERF_PATH -wget -O $IPERF_PATH/libiperf.so.0 https://iperf.fr/download/ubuntu/libiperf.so.0_3.1.3 -o /dev/null -wget -O $IPERF_PATH/iperf3 https://iperf.fr/download/ubuntu/iperf3_3.1.3 -o /dev/null +curl -s -o $IPERF_PATH/libiperf.so.0 https://iperf.fr/download/ubuntu/libiperf.so.0_3.1.3 > /dev/null +curl -s -o $IPERF_PATH/iperf3 https://iperf.fr/download/ubuntu/iperf3_3.1.3 > /dev/null chmod +x $IPERF_PATH/iperf3 function iperf_test {