7 lines
116 B
Bash
Executable File
7 lines
116 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for f in $(find . -name '*.log' -not -name 'config.log'); do
|
|
echo '====' $f '===='
|
|
cat $f
|
|
done
|