mirror of
https://github.com/nasa/fpp.git
synced 2025-12-14 01:11:35 -06:00
13 lines
238 B
Bash
Executable File
13 lines
238 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Remove generated files
|
|
clean()
|
|
{
|
|
echo "cleaning $PWD"
|
|
rm -f num_failed.txt test-output.txt
|
|
for file in `find . -name '*.out.txt' -or -name '*.diff.txt' -or -name '*~' -or -name 'default-*sh'`
|
|
do
|
|
rm $file
|
|
done
|
|
}
|