mirror of
https://github.com/DioCrafts/OxiCloud.git
synced 2025-10-05 16:12:49 +02:00
9 lines
181 B
Bash
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)
|
|
|