bicycle-statistics/run.sh

13 lines
202 B
Bash
Raw Permalink Normal View History

#!/bin/sh
2021-02-01 09:35:15 +00:00
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