18 lines
344 B
Bash
18 lines
344 B
Bash
#!/usr/bin/ksh
|
|
#set -x
|
|
###########################################################
|
|
# Progetto: MNP - REPORT
|
|
###########################################################
|
|
|
|
#path
|
|
THIS_PATH=`dirname $0`
|
|
|
|
#shell name = report name
|
|
THIS=`basename $0 .sh`
|
|
|
|
#parameter type
|
|
PARAM_TYPE=0
|
|
|
|
# start report
|
|
$THIS_PATH/startReport.sh $THIS $PARAM_TYPE
|
|
|