2024-07-22 09:32:51 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
directory="$1" # The directory to search in
|
|
|
|
filename="$2" # The filename to search for
|
|
|
|
|
2025-03-10 08:43:11 +00:00
|
|
|
# Ensure both arguments are provided
|
|
|
|
if [ -z "$directory" ] || [ -z "$filename" ]; then
|
|
|
|
echo "Usage: $0 <directory> <filename>" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Find the file and store results in an array
|
|
|
|
mapfile -t found_files < <(find "$directory" -type f -name "$filename")
|
2024-07-22 09:32:51 +00:00
|
|
|
|
|
|
|
# Check if any files were found
|
2025-03-10 08:43:11 +00:00
|
|
|
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
|
2025-03-10 08:43:11 +00:00
|
|
|
exit 1
|
2024-07-22 09:32:51 +00:00
|
|
|
else
|
2025-03-10 08:43:11 +00:00
|
|
|
printf "%s\n" "${found_files[@]}"
|
|
|
|
fi
|