mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-18 15:50:22 +00:00
12 lines
295 B
Bash
12 lines
295 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
LOG_FILES=$LOGS_DIR/*
|
||
|
|
|
||
|
|
for FILE in $LOG_FILES; do
|
||
|
|
echo -e "\n\n\n"
|
||
|
|
echo "================================================================================"
|
||
|
|
echo " $FILE"
|
||
|
|
echo "================================================================================"
|
||
|
|
cat $FILE
|
||
|
|
done
|