summaryrefslogtreecommitdiff
path: root/manual/clean.sh
blob: f4a2ea83a031d3d21d4cb0450474a85b7d416e2b (plain)
1
2
#!/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