Skip to content

Instantly share code, notes, and snippets.

View britiger's full-sized avatar

Christopher britiger

  • Ludwigsfelde, Germany
View GitHub Profile
@Fluepke
Fluepke / log_train.sh
Created November 12, 2022 15:16
Log train rides on german trains (location data, internet availability, speed, etc.)
#!/bin/bash
if ! command -v curl &> /dev/null; then
echo "This script needs curl. Please install curl."
exit -1
fi
if ! command -v jq &> /dev/null; then
echo "This script needs jq. Please install jq."
exit -1