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