From 0eeaa9b6180f10d4d468a84a1095396caa71423c Mon Sep 17 00:00:00 2001 From: Ponrar Date: Sun, 9 Jul 2023 03:26:20 -0700 Subject: [PATCH] Replace csv extension in to_notecards.sh --- to_notecards.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/to_notecards.sh b/to_notecards.sh index 561ac26..ee9628d 100755 --- a/to_notecards.sh +++ b/to_notecards.sh @@ -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