9 lines
132 B
Bash
Executable file
9 lines
132 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
FIND_RECIPE="find cookbook/recipes -maxdepth 4 -name"
|
|
|
|
for recipe in $*
|
|
do
|
|
${FIND_RECIPE} "${recipe}"
|
|
done
|