15 lines
357 B
Bash
15 lines
357 B
Bash
#!/usr/bin/ksh
|
|
#set -x
|
|
###########################################################
|
|
# Progetto: MNP - REPORT
|
|
###########################################################
|
|
|
|
#path
|
|
THIS_PATH=`dirname $0`
|
|
|
|
# start report
|
|
$THIS_PATH/report_PreseinCarico.sh
|
|
$THIS_PATH/report_Validazione.sh
|
|
$THIS_PATH/report_Espletamenti.sh
|
|
$THIS_PATH/report_NotificheTerzeParti.sh
|