1 2 3 4 5 6 7 8 9 10 11 12 13
#!/bin/bash # Test script to verify single image functionality echo "Building totalrecall..." go build -o totalrecall ./cmd/totalrecall || exit 1 echo "Testing CLI mode with a single word..." ./totalrecall "котка" || exit 1 echo "Checking generated files..." ls -la output/котка* echo "Test completed successfully!"