7 lines
129 B
Bash
Executable file
7 lines
129 B
Bash
Executable file
#!/bin/bash
|
|
|
|
while IFS=$'\n' read -r file; do
|
|
echo "$file:"
|
|
cat "$file"
|
|
printf "\n\n"
|
|
done < <(find "${1?}" -type f)
|