Subversion Repositories SmartDukaan

Rev

Rev 2524 | Rev 3748 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2521 vikas 1
#!/bin/bash
2
 
3
if [ $# -ne 1 ]
4
then
5
        echo "Usage: $0 <Kettle_dir>"
6
        exit  1
7
fi
8
 
9
KETTLE_DIR=$1
10
 
11
$KETTLE_DIR/pan.sh -file="/root/trunk/pentaho/data-integration/transformations/itemLoader.ktr" -log="/tmp/itemLoader.log" -level=Debug
2522 vikas 12
$KETTLE_DIR/pan.sh -file="/root/trunk/pentaho/data-integration/transformations/ordersLoader.ktr" -log="/tmp/ordersLoader.log" -level=Debug
3545 vikas 13
$KETTLE_DIR/pan.sh -file="/root/trunk/pentaho/data-integration/transformations/cartLoader.ktr" -log="/tmp/cartLoader.log" -level=Debug
14
$KETTLE_DIR/pan.sh -file="/root/trunk/pentaho/data-integration/transformations/userLoader.ktr" -log="/tmp/userLoader.log" -level=Debug
15
$KETTLE_DIR/pan.sh -file="/root/trunk/pentaho/data-integration/transformations/orderFulfilmentLoader.ktr" -log="/tmp/orderFulfilmentLoader.log" -level=Debug