1
0
mirror of synced 2026-01-20 18:08:09 +00:00
2014-04-04 16:51:27 -06:00

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