summaryrefslogtreecommitdiff
path: root/data-analysis1/gather.sh
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2022-08-17 22:17:30 -0400
committerWill Hawkins <[email protected]>2022-08-17 22:17:30 -0400
commitb96c0e0afda482d6841584d0f2e35a2883b346b6 (patch)
tree9c148c2be9e3b9526370dd8137dd517ac3412e9a /data-analysis1/gather.sh
parent79c53ee4dfc86c290fc3d05aa5061ed522bf3bcf (diff)
Removing (old) experiment data files.
Diffstat (limited to 'data-analysis1/gather.sh')
-rwxr-xr-xdata-analysis1/gather.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/data-analysis1/gather.sh b/data-analysis1/gather.sh
deleted file mode 100755
index 596e2f4..0000000
--- a/data-analysis1/gather.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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