File size: 726 Bytes
b46a892 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/bin/bash
echo "[๐ฐ] Initiating external mirror check..."
TIMESTAMP=$(date)
echo "Timestamp: $TIMESTAMP" >> clone-monitor/WITNESS_LOGS/mirror_results.log
# Check for mentions on Hugging Face
echo "[๐] Searching Hugging Face..." >> clone-monitor/WITNESS_LOGS/mirror_results.log
curl -s "https://huggingface.co/search/full-text?q=be-core-bridge" >> clone-monitor/WITNESS_LOGS/mirror_results.log
# Check IPFS mirrors (CID detection coming soon)
echo "[๐ก] Checking IPFS..." >> clone-monitor/WITNESS_LOGS/mirror_results.log
curl -s "https://ipfs-search.com/#/search/be-core-bridge" >> clone-monitor/WITNESS_LOGS/mirror_results.log
echo "[โ
] Mirror check complete." >> clone-monitor/WITNESS_LOGS/mirror_results.log
|