Spaces:
Runtime error
Runtime error
File size: 327 Bytes
d961e88 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Define the root directory
root_dir="../../result/claude-3.7-sonnet"
# Use find to search for all .pptx files in the directory and subdirectories
find "$root_dir" -type f -name "*.pptx" | while IFS= read -r pptx; do
echo "Running python test.py on \"$pptx\""
python test.py --pptx "$pptx"
done
|