mirror of
https://github.com/d0zingcat/bluesky-crossposter.git
synced 2026-05-13 15:09:25 +00:00
7 lines
161 B
Bash
Executable File
7 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run once per hour if nothing else has been specified in environment variables
|
|
while :; do
|
|
python crosspost.py
|
|
sleep ${RUN_INTERVAL:-3600}
|
|
done |