1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-11-15 06:14:58 +00:00
gnss-sdr/utils/scripts/gnss-sdr-harness.sh

15 lines
358 B
Bash
Raw Normal View History

#!/bin/sh
# GNSS-SDR shell script that enables the remote GNSS-SDR restart telecommand
# usage: ./gnss-sdr-harness.sh ./gnss-sdr -c config_file.conf
# SPDX-FileCopyrightText: Javier Arribas <javier.arribas(at)cttc.es>
# SPDX-License-Identifier: GPL-3.0-or-later
echo "Executing" "$@"
"$@"
while [ $? -eq 42 ]
do
echo "Restarting GNSS-SDR..."
"$@"
done