mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-05 09:04:08 +00:00
BSD sed equivalent to -r parameter is -E and it is also supported in GNU sed thus using -E results in support on both platforms.
3 lines
140 B
Bash
Executable file
3 lines
140 B
Bash
Executable file
#!/bin/bash
|
|
for f in $( find . -name .gitignore ); do sed -Ee "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs rm -f,;" $f; done | bash -v
|