Files
redox/scripts/recipe-path.sh
2025-11-20 13:54:40 -07:00

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