mirror of
https://github.com/nasa/fpp.git
synced 2025-12-17 05:51:30 -06:00
14 lines
428 B
Plaintext
14 lines
428 B
Plaintext
#!/bin/sh -e
|
|
|
|
# ----------------------------------------------------------------------
|
|
# clean.do
|
|
# ----------------------------------------------------------------------
|
|
|
|
rm -f fpp-users-guide.adoc *.html *.pdf *~ *.bak \
|
|
defined-tags.txt used-tags.txt \
|
|
undefined-tags.txt undefined-tags.annotated.txt \
|
|
keywords.txt
|
|
rm -rf code-prettify check
|
|
targets=`find . -mindepth 2 -name clean.do | sed 's/\.do$//'`
|
|
redo $targets
|