blob: addc34ed1838de9f67454e70b3d9c13b5f9c58c1 [file] [log] [blame] [edit]
#!/bin/bash
for f in $( find . -name .gitignore ); do sed -Ee "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs rm -f,;" $f; done | bash -v