Files
OxiCloud/identifier.sh
2025-03-17 21:28:08 +01:00

9 lines
181 B
Bash

while IFS= read -r -d '' file; do
if grep -Iq . "$file"; then
echo "===== $file ====="
cat "$file"
echo -e "\n"
fi
done < <(find . -type f -print0)