Sign in
foss-fpga-tools
/
third_party
/
yosys
/
51e4e29bb1f7c030b0cac351c522dc41f7587be2
/
.
/
manual
/
clean.sh
blob: addc34ed1838de9f67454e70b3d9c13b5f9c58c1 [
file
]
#!/bin/bash
for
f
in
$
(
find
.
-
name
.
gitignore
);
do
sed
-
Ee
"s,^,find ${f%.gitignore} -name ',; s,$,' | xargs rm -f,;"
$f
;
done
|
bash
-
v