diff options
| author | Rich Brown <[email protected]> | 2022-06-05 08:22:42 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-06-05 08:22:42 -0400 |
| commit | 5d7a55ebed54724233aa0b9b417643b9fc91a352 (patch) | |
| tree | 26659fa5abd090ac83bb49e5cb8c2de4efc01853 /data-analysis1/gather.sh | |
| parent | f97d4a8753d0df65704dcaf46dbc30de9d8898b7 (diff) | |
| parent | d06438ff7414abfcc5a2a1bd13a935ee594f0842 (diff) | |
Merge branch 'network-quality:main' into main
Diffstat (limited to 'data-analysis1/gather.sh')
| -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 |
