summaryrefslogtreecommitdiff
path: root/manual/clean.sh
blob: 11c2e7bf2a4c978c00bcb454305928098b1cccd4 (plain)
1
2
#!/bin/bash
for f in $( find . -name .gitignore ); do sed -re "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs rm -f,;" $f; done | bash -v