mirror of
https://github.com/clearlinux/swupd-server.git
synced 2026-09-04 04:31:49 +00:00
14 lines
236 B
Bash
Executable File
14 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export BATS_TEST_DIRNAME=$PWD
|
|
export TIMEFORMAT
|
|
TIMEFORMAT="time %R %P%% (%U+%S)"
|
|
source ../swupdlib.bash
|
|
exec 3< rundata
|
|
|
|
while read -r -u 3
|
|
do
|
|
read -i "$REPLY" -e CMD
|
|
eval "set -x ; time ( $CMD ) ; set +x "
|
|
done
|