Some little cosmetic (readability of log files) changes

This commit is contained in:
pezcurrel 2022-12-17 18:40:22 +01:00
parent 2571396253
commit 5c605cbe5b

View file

@ -24,11 +24,11 @@ function domail {
# $1: comando; $2: logfile per l'output del comando
function logcmd {
init="$(date)"
init="$(date -R)"
echo "$init: eseguo «$1»" >> $LOGF
$1 &> $2
ec=$?
endt="$(date)"
endt="$(date -R)"
echo -n "$endt: fine esecuzione di «$1»: " >> $LOGF
if [ $ec -eq 0 ]; then
echo "riuscita!" >> $LOGF
@ -39,13 +39,15 @@ function logcmd {
tail -n 20 $2 > $MAILF
domail "Lesecuzione di «$1», cominciata $init e finita $endt, NON È RIUSCITA (exit code: $ec) :-(" "$MAILF"
fi
echo "--------------------------" >> $LOGF
# echo "--------------------" >> $LOGF
}
#logcmd "grep pippo gigi" "grepa.log"
#logcmd "grep pippo bibi" "grepb.log"
#exit
echo "----------[ inizio esecuzione crawl.bash ]----------" >> $LOGF
logcmd "php mustool.php updstats" "mustool.updstats.log"
if [ "$2" == "dopeers" ]; then
@ -57,4 +59,6 @@ fi
logcmd "php mustool.php shuffle clean optimize" "mustool.shuffle-clean-optimize.log"
echo "----------[ fine esecuzione crawl.bash ]----------" >> $LOGF
exit 0