mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-08 02:15:20 +00:00
3 lines
143 B
Bash
Executable file
3 lines
143 B
Bash
Executable file
#!/bin/bash
|
|
for f in $( find . -name .gitignore ); do sed -re "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs -r rm -f,;" $f; done | bash -v
|