forked from D-Net/dnet-hadoop
11 lines
184 B
Bash
11 lines
184 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ $# = 0 ] ; then
|
||
|
oozie job -oozie ${oozieServiceLoc} -config job.properties -run
|
||
|
else
|
||
|
oozie job -oozie ${oozieServiceLoc} -config $1/job.properties -run
|
||
|
fi
|
||
|
|
||
|
|
||
|
|