mirror of
https://github.com/rust-lang/book.git
synced 2026-05-19 21:00:45 -04:00
14 lines
156 B
Bash
Executable File
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
|