mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-24 16:10:25 +08:00
4 lines
127 B
Bash
4 lines
127 B
Bash
|
for file in src/*.md ; do
|
||
|
echo Checking references in $file
|
||
|
cargo run --quiet --bin link2print < $file > /dev/null
|
||
|
done
|