From 13099b188e02b97639802630e52955d2284651ee Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Wed, 22 Oct 2025 17:11:32 -0600 Subject: [PATCH] make gnuplot script use more basic fonts --- scripts/get-sftp-benchmark.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get-sftp-benchmark.sh b/scripts/get-sftp-benchmark.sh index 5c6036d4..e78f06a2 100755 --- a/scripts/get-sftp-benchmark.sh +++ b/scripts/get-sftp-benchmark.sh @@ -75,7 +75,7 @@ do_create_average() { do_create_plot() { - gnuplot -e "set title '$TITLE';set ylabel 'MB/s';set xlabel 'File Size in Bytes';set grid; set format x \"%2.1t{/Symbol \264}10^{%L}\"; set term png;set output '$OUTPUT_FILE';plot '$LOG_FILE' using 1:2, '$AVERAGE_FILE' with lines lc rgb 'red' lw 2, '$COMPARE_TO' with lines lc rgb 'gold' lw 2" + gnuplot -e "set title '$TITLE';set ylabel 'MB/s' rotate by 90;set xlabel 'File Size in Bytes';set grid; set format x \"%2.1t×10^{%L}\"; set term pngcairo enhanced;set output '$OUTPUT_FILE';plot '$LOG_FILE' using 1:2, '$AVERAGE_FILE' with lines lc rgb 'red' lw 2, '$COMPARE_TO' with lines lc rgb 'gold' lw 2" } echo "Starting tests"