Files
foundry/refactor.sh
Jasper Butcher 5e7b739ed3 Add initial RFD3 Files and passing tests
* Add initial files

* add files

* Move projects.aa_design -> rfd3

* Make format

* Delete test files

* Add configs

* Mc

* Fixed tests

* remove test files
2025-11-11 10:07:43 -08:00

9 lines
259 B
Bash
Executable File

#!/bin/bash
# Replace module prefixes across .py, .ipynb, .toml, .yaml files
find . -type f \( -name "*.py" -o -name "*.ipynb" -o -name "*.toml" -o -name "*.yaml" \) \
-exec sed -i 's/\bprojects.aa_design\b/rfd3/g' {} +
grep -R --color -nE 'aa_design' .