Files
book/tools/update-editions.sh
2021-12-26 20:32:41 -05:00

9 lines
177 B
Bash
Executable File

#!/bin/bash
set -eu
OLD_EDITION=2018
NEW_EDITION=2021
find listings/** -name "Cargo.toml" -exec sed -i '' "s/edition = \"$OLD_EDITION\"/edition = \"$NEW_EDITION\"/g" '{}' \;