diff --git a/grib_processor b/grib_processor
new file mode 100755
index 0000000000000000000000000000000000000000..4b96fb219bf36bc2010d4baada74c127645503f6
--- /dev/null
+++ b/grib_processor
@@ -0,0 +1,9 @@
+#! /bin/bash
+
+SOURCE="${BASH_SOURCE[0]}"
+while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
+BASE="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
+
+PYTHON=${PYTHON:-python3}
+
+exec $PYTHON $BASE/grib_processor.py "$@"