summaryrefslogtreecommitdiff
path: root/src/python/go.sh
blob: 1e8150dcc37b733daf8ebb85d69e7daeda4bb366 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

echo "go.sh <file.cfile> [decim==112]"

DECIM=$2
FILE=$1

if [ $DECIM"x" = x ]; then
	DECIM=112
fi

./gsm_receive.py  -d "$DECIM" -I "$FILE" | ../../../gsmdecode/src/gsmdecode -i
personal git repositories of Harald Welte. Your mileage may vary