mirror of
https://github.com/Sosokker/site-to-llmstxt.git
synced 2025-12-18 13:34:06 +01:00
26 lines
576 B
Bash
26 lines
576 B
Bash
#!/bin/bash
|
|
|
|
# Simple test script to demonstrate the crawler
|
|
# Usage: ./test.sh
|
|
|
|
echo "Building crawler..."
|
|
go build -o crawler main.go
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "Build successful!"
|
|
|
|
echo "Testing help message..."
|
|
./crawler -h
|
|
|
|
echo ""
|
|
echo "Example usage:"
|
|
echo "./crawler -url https://example.com -workers 3 -output ./example-output -verbose"
|
|
|
|
echo ""
|
|
echo "To test with a real website (be respectful!):"
|
|
echo "./crawler -url https://httpbin.org -workers 2 -output ./test-output"
|
|
else
|
|
echo "Build failed!"
|
|
exit 1
|
|
fi
|