0g-storage-node/scripts/search_abi.sh

16 lines
428 B
Bash
Raw Normal View History

2024-07-22 09:32:51 +00:00
#!/bin/bash
directory="$1" # The directory to search in
filename="$2" # The filename to search for
# Find the file in the directory
mapfile -t found_files < <(find "$directory" -type f -name "$filename")
2024-07-22 09:32:51 +00:00
# Check if any files were found
if [ ${#found_files[@]} -eq 0 ]; then
2024-07-22 09:32:51 +00:00
echo "Error: No files named '$filename' found in directory '$directory'." >&2
exit 1
else
printf "%s\n" "${found_files[@]}"
fi