#!/bin/sh python3 -m bicycle_statistics /bs_in /bs_out # if argument(s) given - execute argument(s) in container. Otherwise loop. if [ "$#" -gt 0 ]; then exec $@ else while :; do sleep 1 done fi