summaryrefslogtreecommitdiff
path: root/gsm-receiver/src/python/go.sh
diff options
context:
space:
mode:
Diffstat (limited to 'gsm-receiver/src/python/go.sh')
-rwxr-xr-xgsm-receiver/src/python/go.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/gsm-receiver/src/python/go.sh b/gsm-receiver/src/python/go.sh
new file mode 100755
index 0000000..e0d1290
--- /dev/null
+++ b/gsm-receiver/src/python/go.sh
@@ -0,0 +1,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