aboutsummaryrefslogtreecommitdiffstats
path: root/launch-all-encoders.sh
diff options
context:
space:
mode:
Diffstat (limited to 'launch-all-encoders.sh')
-rwxr-xr-xlaunch-all-encoders.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/launch-all-encoders.sh b/launch-all-encoders.sh
deleted file mode 100755
index d9da530..0000000
--- a/launch-all-encoders.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-# launch each encoder in its own screen window
-
-set -e
-
-if [ -f site/configuration.sh ]
-then
-
- source site/configuration.sh
-
- for radio in ${all_radios[*]}
- do
- echo "Launching $radio encoder"
- screen -t "Audio Encoder $radio" ./radio.sh "$radio"
- sleep 0.4
- done
-
- for mot in ${all_mot[*]}
- do
- echo "Launching $mot mot-encoder"
- screen -t "MOT Encoder $mot" ./mot.sh "$mot"
- sleep 0.4
- done
-else
- echo "Error: No site configuration available!"
- exit 1
-fi
-