File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33# Yet Another Bench Script by Mason Rowe
4- # Initial Oct 2019; Last update Dec 2024
4+ # Initial Oct 2019; Last update Jan 2025
55
66# Disclaimer: This project is a work in progress. Any errors or suggestions should be
77# relayed to me via the GitHub project page linked below.
1212# performance via fio. The script is designed to not require any dependencies
1313# - either compiled or installed - nor admin privileges to run.
1414
15- YABS_VERSION=" v2024-12-20 "
15+ YABS_VERSION=" v2025-01-01 "
1616
1717echo -e ' # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #'
1818echo -e ' # Yet-Another-Bench-Script #'
@@ -947,9 +947,8 @@ function launch_geekbench {
947947 fi
948948 else
949949 # if the Geekbench test succeeded, parse the test results URL
950- GEEKBENCH_URL=$( echo -e " $GEEKBENCH_TEST " | head -1)
951- GEEKBENCH_URL_CLAIM=$( echo " $GEEKBENCH_URL " | awk ' { print $2 }' )
952- GEEKBENCH_URL=$( echo " $GEEKBENCH_URL " | awk ' { print $1 }' )
950+ GEEKBENCH_URL=$( echo -e " $GEEKBENCH_TEST " | head -1 | awk ' { print $1 }' )
951+ GEEKBENCH_URL_CLAIM=$( echo -e " $GEEKBENCH_TEST " | tail -1 | awk ' { print $1 }' )
953952 # sleep a bit to wait for results to be made available on the geekbench website
954953 sleep 10
955954 # parse the public results page for the single and multi core geekbench scores
You can’t perform that action at this time.
0 commit comments