kopia lustrzana https://github.com/Hamlib/Hamlib
14 wiersze
379 B
Bash
Executable File
14 wiersze
379 B
Bash
Executable File
#!/bin/sh
|
|
# Put this script in /usr/local/bin
|
|
# --set-conf=tuner_contrl_pathname=/usr/local/bin/hamlib_tuner_control
|
|
# Or use a batch file in Windows for example in C:\Util\tuner.bat
|
|
# echo Tuner %1
|
|
# --set-conf=C:/Util/tuner.bat
|
|
if [ "$#" -eq 0 ]
|
|
then
|
|
echo "Expected arg 0 or 1...got nothing"
|
|
exit 1
|
|
fi
|
|
echo Tuner Control $1
|
|
echo `date` " " Tuner Control $1 >>tuner_control.log
|