mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
16 lines
295 B
Plaintext
16 lines
295 B
Plaintext
|
#!/bin/sh
|
||
|
if [ -e /usr/local/bin/python ] ; then
|
||
|
LOCALBASE=/usr/local/
|
||
|
else
|
||
|
LOCALBASE=/usr/
|
||
|
fi
|
||
|
if [ ! -e ~/.wsjt ] ; then
|
||
|
mkdir ~/.wsjt
|
||
|
mkdir ~/.wsjt/RxWav
|
||
|
fi
|
||
|
if [ ! -e ~/.wsjt/CALL3.TXT ] ; then
|
||
|
cp -f ${LOCALBASE}/share/wsjt/CALL3.TXT ~/.wsjt
|
||
|
fi
|
||
|
cd ~/.wsjt
|
||
|
python ${LOCALBASE}/bin/wsjt.py
|