mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 17:29:15 -06:00
7 lines
105 B
Bash
Executable File
7 lines
105 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
for dir in `find . -mindepth 1 -type d`
|
|
do
|
|
(cd $dir; echo "cleaning $PWD"; ./clean)
|
|
done
|