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