mirror of
https://github.com/nasa/fpp.git
synced 2025-12-11 11:16:42 -06:00
10 lines
169 B
Bash
Executable File
10 lines
169 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
for file in `find . -mindepth 2 -maxdepth 2 -name update-ref`
|
|
do
|
|
dir=`dirname $file`
|
|
echo "[ $dir ]"
|
|
base=`basename $file`
|
|
(cd $dir; ./$base)
|
|
done
|