mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-01 13:09:48 +09:00
9 lines
123 B
Bash
Executable File
9 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
FIND_RECIPE="find recipes -maxdepth 4 -name"
|
|
|
|
for recipe in $*
|
|
do
|
|
${FIND_RECIPE} "${recipe}"
|
|
done
|