blob: 85fbeb983e1838b03ce79bc69c19c095b723e984 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
echo "go.sh <file.cfile> [decim==112]"
DECIM=$2
FILE=$1
if [ $FILE"x" = x ]; then
FILE="../../../resource/data/GSMSP_940.8Mhz_118.cfile"
DECIM=118
fi
if [ $DECIM"x" = x ]; then
DECIM=112
fi
./gsm_scan.py -SN -pd -d "$DECIM" -I "$FILE" | ../../../gsmdecode/src/gsmdecode -i
|