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
href='#n154'>154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179