The following methods demonstrate different methods on how to compute the time a potion of code or script take to complete their execution.
[download id=”2158″]
Method 1 – Using date
The following example will calculate the execution time in seconds by subtracting the system date and time in seconds since 1970-01-01 00:00:00 UTC
once right before the script goes to the computation part and once right after.
In order to get the system date and time in seconds since 1970-01-01 00:00:00 UTC
we use the command date +%s
.
[download id=”2158″]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/bash
startTime=$( date +%s);
sleep $(( (RANDOM % 10) + 1 ));
endTime=$( date +%s);
totalTime=$(($endTime-$startTime));
echo "Process finished after $totalTime seconds" ;
exit 0;
|
Method 2 – Using bash internal SECONDS variable
The following example will calculate the execution time in seconds by reseting the bash internal variable SECONDS
to 0, forcing the shell to continue counting from there.
[download id=”2158″]
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash
SECONDS=0;
sleep $(( (RANDOM % 10) + 1 ));
echo "Process finished after $SECONDS seconds" ;
exit 0;
|
Method 3 – Using bash time
The following example uses the bash time command, which reports the time consumed by a pipeline’s execution.
When time command is executed without its complete path, then the bash built-in time command is executed, instead of the GNU time command. We will use the bash time command in this example and we will use it to run a whole block of commands.
Please note that time command will return the time in seconds as a float (i.e. there will be decimal places. e.g. 1 will be printed as 1.00).
[download id=”2158″]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash
TIMEFORMAT= "%E" ;
totalTime=` time ( sleep $(( (RANDOM % 10) + 1 )) ) 2>&1`;
echo "Process finished after $totalTime seconds" ;
totalTimeBlock=` time (
sleep $(( (RANDOM % 10) + 1 ));
sleep $(( (RANDOM % 10) + 1 ));
) 2>&1`;
echo "Block finished after $totalTimeBlock seconds" ;
exit 0;
|
Method 4 – Using GNU time
The GNU time command runs the specified program command with the given arguments.
When time command is executed without its complete path (in our case it was /usr/bin/time), then the bash built-in time command is executed, instead of the GNU time command. To make sure we use the GNU time command, we use which to get the full path of the time command.
Please note that time command will return the time in seconds as a float (i.e. there will be decimal places. e.g. 1 will be printed as 1.00).
[download id=”2158″]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/bash
time =` which time `;
totalTime= "$( $time -f '%e' sleep $(( (RANDOM % 10) + 1 )) 2>&1 1>/dev/null )" ;
echo "Process finished after $totalTime seconds" ;
exit 0;
|
Notes
RANDOM internal variable
Each time RANDOM
internal variable is referenced, a random integer between 0
and 32767
is generated.
By using the RANDOM
variable in this command $(( (RANDOM % 10) + 1 ));
we perform a modulo on the random value with the static value 10. This way we force the range of valid values to be between 0
and 9
.
Later, we add 1 to that value to shift the range to be between 1
and 10
.