From 80fd9e1a910145d405ea066dfe0d166cd6207b6c Mon Sep 17 00:00:00 2001 From: Anna Sholz <0xsholz@gmail.com> Date: Mon, 10 Mar 2025 11:43:11 +0300 Subject: [PATCH] fix: handle multiple files correctly in `find` output --- scripts/search_abi.sh | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/scripts/search_abi.sh b/scripts/search_abi.sh index 966f123..39242eb 100755 --- a/scripts/search_abi.sh +++ b/scripts/search_abi.sh @@ -3,13 +3,19 @@ directory="$1" # The directory to search in filename="$2" # The filename to search for -# Find the file in the directory -found_files=$(find "$directory" -type f -name "$filename") +# Ensure both arguments are provided +if [ -z "$directory" ] || [ -z "$filename" ]; then + echo "Usage: $0 " >&2 + exit 1 +fi + +# Find the file and store results in an array +mapfile -t found_files < <(find "$directory" -type f -name "$filename") # Check if any files were found -if [ -z "$found_files" ]; then +if [ "${#found_files[@]}" -eq 0 ]; then echo "Error: No files named '$filename' found in directory '$directory'." >&2 - exit 1 + exit 1 else - echo "$found_files" -fi \ No newline at end of file + printf "%s\n" "${found_files[@]}" +fi