diff options
| author | Will Hawkins <[email protected]> | 2022-05-09 09:56:21 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2022-05-09 09:56:21 -0400 |
| commit | a754f1a93b45da3b2f51594ba1c2fc1b2eac0734 (patch) | |
| tree | 1209186e6708ea90d1cccf2eb3d51259ea918bef | |
| parent | 15f995e8860846588f585a8f062cea2cf57712d4 (diff) | |
[Data analysis] Script that generated those data
| -rwxr-xr-x | data-analysis1/gather.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/data-analysis1/gather.sh b/data-analysis1/gather.sh new file mode 100755 index 0000000..596e2f4 --- /dev/null +++ b/data-analysis1/gather.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +UUID=`date | sed 's/[ :]//g'` +GOLOG="go.log.${UUID}" +NQLOG="nq.log.${UUID}" + +for i in `seq 1 100`; do + date >> ${GOLOG} + ./networkQuality -config rpm.obs.cr -path config -port 4043 >> ${GOLOG} + echo "Done with Go test (#${i})" + date >> ${NQLOG} + /usr/bin/networkQuality -C https://rpm.obs.cr:4043/config >> ${NQLOG} + echo "Done with networkQuality test (#${i})" +done |
