Some little cosmetic (readability of log files) changes
This commit is contained in:
parent
2571396253
commit
5c605cbe5b
1 changed files with 7 additions and 3 deletions
|
@ -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 "L’esecuzione 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
|
||||
|
|
Loading…
Reference in a new issue