From 1a35256053e1bc8fb3b0c7fb418697df1ff07781 Mon Sep 17 00:00:00 2001 From: ligc Date: Mon, 28 Jul 2014 17:01:19 -0500 Subject: [PATCH] fix for bug 4202: parse the rcons -help and rcons --help --- xCAT-client/bin/rcons | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-client/bin/rcons b/xCAT-client/bin/rcons index 86497d9f1..54b1ce481 100755 --- a/xCAT-client/bin/rcons +++ b/xCAT-client/bin/rcons @@ -13,7 +13,7 @@ if [ "$os" == "AIX" ]; then export HOME fi -if [ -z "$1" ] || [ "$1" = "-h" ]; then +if [ -z "$1" ] || [ "$1" = "-h" ] || [ "$1" = "-help" ] || [ "$1" = "--help" ]; then echo "rcons - remotely accesses the serial console of a node" echo "rcons [conserver] [-f]" echo "rcons [conserver] [-s]"