#!/usr/bin/env bash
OUT=/tmp/rip_find.out
: > "$OUT"
echo "=== find rippling dirs ===" >> "$OUT"
find /home/claude -maxdepth 6 -type d -iname '*rippling*' 2>/dev/null >> "$OUT"
echo "=== find .env under rippling ===" >> "$OUT"
find /home/claude -maxdepth 7 -iname '*.env*' -path '*ippling*' 2>/dev/null >> "$OUT"
echo "=== grep RPKEY in env-like files ===" >> "$OUT"
grep -rIl 'RPKEY01' /home/claude 2>/dev/null | head -20 >> "$OUT"
echo "DONE" >> "$OUT"
