Change where the newline is so each MASTER is in its own log section.

This commit is contained in:
2026-03-30 11:16:59 -07:00
parent 588007fe37
commit ef097e973e

View File

@@ -85,9 +85,9 @@ function today { date "+%Y%m%d"; }
# Enhance Bin Scripts #
function send-masters {
echo -e "`date` - Looping through MASTER directories.\n"
echo -e "`date` - Looping through MASTER directories."
ls | grep '\-MASTER' | while read dir; do
echo -e "`date` - Found '$dir'..."
echo -e "\n`date` - Found '$dir'..."
cd $dir
send-master
cd ..