mirror of
https://github.com/RosettaCommons/foundry.git
synced 2026-06-04 13:24:22 +08:00
* Add initial files * add files * Move projects.aa_design -> rfd3 * Make format * Delete test files * Add configs * Mc * Fixed tests * remove test files
9 lines
259 B
Bash
Executable File
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' .
|
|
|