blob: 1f7e56d127d4129cd5beeee5b54865d4cee328f8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | #!/bin/bash
# launch each encoder in its own screen window
if [ -f site/configuration.sh ]
then
    source site/configuration.sh
    for radio in ${all_radios[*]}
    do
        screen -t $radio ./radio $radio
        sleep 0.4
    done
else
    echo "Error: No site configuration available!"
    exit 1
fi
 |