Using multiple receivers to monitor HFDL traffic I'd like to create a start script for each of my receivers. The dumphfdl tool needs quite a few parameters. Besides specific parameters, the frequencies to monitor are given as a set of parameters.
Is it possible to put the frequencies in a text file and so feed them to the script?
Example of command line:
dumphfdl --soapysdr driver=sdrplay --freq-as-squawk \
--sample-rate 2000000 --system-table /home/systable.conf \
--system-table-save /home/systable.conf \
2941 2944 2992 2998 3007 3016 3455 3497 3900 4654 4660 4681 4687 \
--output decoded:basestation:tcp:address=127.0.0.1,port=60011
Desired command line:
dumphfdl --soapysdr driver=sdrplay --freq-as-squawk \
--sample-rate 2000000 --system-table /home/systable.conf \
--system-table-save /home/systable.conf 02M-04M.txt \
--output decoded:basestation:tcp:address=127.0.0.1,port=60011