mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 17:29:15 -06:00
11 lines
144 B
Bash
Executable File
11 lines
144 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../../../../scripts/utils.sh
|
|
|
|
for file in `find . -name run`
|
|
do
|
|
dir=`dirname $file`
|
|
echo "[ $dir ]"
|
|
(cd $dir; ./run)
|
|
done
|