HADOOP-15914. hadoop jar command has no help argument. Contributed by Adam Antal.
Signed-off-by: Wei-Chiu Chuang <weichiu@apache.org>
This commit is contained in:
parent
eb6be4643f
commit
56c621c68f
|
@ -140,6 +140,10 @@ function hadoopcmd_case
|
|||
if [[ -n "${YARN_OPTS}" ]] || [[ -n "${YARN_CLIENT_OPTS}" ]]; then
|
||||
hadoop_error "WARNING: Use \"yarn jar\" to launch YARN applications."
|
||||
fi
|
||||
if [[ -z $1 || $1 = "--help" ]]; then
|
||||
echo "Usage: hadoop jar <jar> [mainClass] args..."
|
||||
exit 0
|
||||
fi
|
||||
HADOOP_CLASSNAME=org.apache.hadoop.util.RunJar
|
||||
;;
|
||||
jnipath)
|
||||
|
|
|
@ -189,6 +189,11 @@ call :updatepath %HADOOP_BIN_PATH%
|
|||
) else if defined YARN_CLIENT_OPTS (
|
||||
@echo WARNING: Use "yarn jar" to launch YARN applications.
|
||||
)
|
||||
@rem if --help option is used, no need to call command
|
||||
if [!hadoop-command-arguments[%1%]!]==["--help"] (
|
||||
@echo Usage: hadoop jar <jar> [mainClass] args...
|
||||
goto :eof
|
||||
)
|
||||
set CLASS=org.apache.hadoop.util.RunJar
|
||||
goto :eof
|
||||
|
||||
|
|
Loading…
Reference in New Issue