File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# Yet Another Bench Script by Mason Rowe
4
- # Initial Oct 2019; Last update Dec 2024
4
+ # Initial Oct 2019; Last update Jan 2025
5
5
6
6
# Disclaimer: This project is a work in progress. Any errors or suggestions should be
7
7
# relayed to me via the GitHub project page linked below.
12
12
# performance via fio. The script is designed to not require any dependencies
13
13
# - either compiled or installed - nor admin privileges to run.
14
14
15
- YABS_VERSION=" v2024-12-20 "
15
+ YABS_VERSION=" v2025-01-01 "
16
16
17
17
echo -e ' # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #'
18
18
echo -e ' # Yet-Another-Bench-Script #'
@@ -947,9 +947,8 @@ function launch_geekbench {
947
947
fi
948
948
else
949
949
# 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 }' )
953
952
# sleep a bit to wait for results to be made available on the geekbench website
954
953
sleep 10
955
954
# 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