2024-10-23 14:14:14 +02:00

15 lines
312 B
Bash

#!/bin/bash
for arg in "$@"; do
case "$arg" in
work-dir=*) work_dir="${arg#*=}" ;;
esac
done
cd $work_dir
echo "working dir : " $(pwd)
#scrape at startup in order to generate files on bool
plutotv-scraper --config /bin/pluto/config.json
plutotv-scraper --config /bin/pluto/config.json --port 5050