Replace csv extension in to_notecards.sh

This commit is contained in:
Ponrar 2023-07-09 03:26:20 -07:00
parent c0791eee85
commit 0eeaa9b618

View File

@ -16,5 +16,5 @@ mkdir -p $OUTPUT_DIR
# Pipe and redirect python output to files
for file in ${files[@]}; do
./process "$file" > "$OUTPUT_DIR/${file%.txt}.note"
./process "$file" > "$OUTPUT_DIR/${file%.csv}.note"
done