2 lines
142 B
Bash
Executable file
2 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
|