summaryrefslogtreecommitdiff
path: root/gsm-receiver/src/python/go.sh
blob: e0d1290c378b60078ecdadee56f474d75b8f2421 (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