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