Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make gnuplot script use more basic fonts
  • Loading branch information
JacobBarthelmeh committed Oct 22, 2025
commit 13099b188e02b97639802630e52955d2284651ee
2 changes: 1 addition & 1 deletion scripts/get-sftp-benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down