First Commit - Source Code from Reply

This commit is contained in:
vincenzofariello
2024-05-13 12:54:14 +02:00
parent 73e32a5020
commit a15aee1f08
11184 changed files with 1065913 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/usr/bin/ksh
THIS_PATH=`dirname $0`
. $THIS_PATH/../setEnv.sh
$THIS_PATH/../TestNodo.sh
if [ $? -eq 0 ]
then
if [ "$1" = "" ] || [ "$2" = "" ] || [ "$3" = "" ]; then
echo "Utilizzo: ${0} data_inizio data_fine numero_righe"
echo " le date vanno passate in formato DDMMYYYY "
echo " numero_righe indica quante righe al massimo estrarre nel file"
exit -1
fi
$MNP_SCRIPT_HOME/sqlExecutor.sh -sqlplus $THIS_PATH/runDbc2Dbcfx.sql $1 $2 $3 >$THIS_PATH/runDbc2Dbcfx.log
fi