12 lines
596 B
Bash
Executable File
12 lines
596 B
Bash
Executable File
#!/bin/bash
|
|
# One-shot SentinelOne earnings check — fires at 16:05 ET on Mar 12
|
|
# Self-removes after running
|
|
|
|
# Remove this cron entry
|
|
(crontab -l 2>/dev/null | grep -v "s-earnings-check.sh") | crontab -
|
|
|
|
# Trigger James to check S earnings via OpenClaw webhook
|
|
curl -s -X POST http://localhost:18789/hooks/reminder \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"message": "REMINDER: Check SentinelOne (S) Q4 earnings results — Johan asked for this at 4:05 PM. Search for results, summarize revenue vs $271M guidance, EPS, ARR, guidance, and stock reaction. Send to Johan via Telegram."}'
|