Files
IT-Konzept/tools/convert-quotes.sh
Ralf Zerres aa80242275 Initial commit
Commit
2025-05-28 14:53:32 +02:00

14 lines
156 B
Bash
Executable File

#!/bin/bash
set -eu
dir=$1
mkdir -p "tmp/$dir"
for f in $dir/*.md
do
cat "$f" | cargo run --bin convert_quotes > "tmp/$f"
mv "tmp/$f" "$f"
done