22 lines
566 B
Bash
Executable File
22 lines
566 B
Bash
Executable File
#!/bin/bash
|
||
# 任务名称:飞书问题反馈实时同步(步骤1-3:写入电子表格)
|
||
# 执行时间:每 5 分钟
|
||
# 归属 Agent:小葵 xiaokui
|
||
|
||
set -e
|
||
|
||
export PATH=/root/.nvm/versions/node/v24.14.0/bin:$PATH
|
||
LOG_FILE="/var/log/xiaokui_feedback_realtime.log"
|
||
|
||
log() {
|
||
echo "[$(date +'%Y-%m-%d %H:%M:%S')] $1" >> "$LOG_FILE"
|
||
}
|
||
|
||
log "=== 实时同步开始 ==="
|
||
|
||
cd /root/.openclaw/workspace-xiaokui
|
||
python3 skills/feishu-feedback-sync/scripts/sync_feishu_feedback.py --days 3 --steps 1-3 >> "$LOG_FILE" 2>&1
|
||
|
||
log "=== 实时同步结束 ==="
|
||
exit 0
|