Untitled

mail@pastecode.io avatar
unknown
plain_text
14 days ago
135 B
3
Indexable
Never
#!/bin/bash

while true; do
    # Your task goes here
    echo "Task executed at $(date)"

    # Sleep for 30 seconds
    sleep 30
done
Leave a Comment