#!/usr/bin/with-contenv bash

TAIL_LOGS=$(echo "$LOGS_TO_STDOUT" | sed 's#|# -f #g')

echo "Executing: tail -F $TAIL_LOGS"
tail -F $TAIL_LOGS
