Project

General

Profile

1
#!/bin/bash
2

    
3
if [ $# = 0 ] ; then
4
    oozie job -oozie ${oozieServiceLoc} -config job.properties -run
5
else
6
    oozie job -oozie ${oozieServiceLoc} -config $1/job.properties -run
7
fi
8

    
9

    
10

    
(4-4/5)