Commit 60a94dae authored by J Phani Mahesh's avatar J Phani Mahesh
Browse files

simplify call by using $@

$@ refers to all arguments, which is a nice way of saying $1 $2 ..., plus it doesn't need updating if we need more arguments.
parent d250f9c7
......@@ -1284,5 +1284,5 @@ createCSR:
if [ -z "$1" ] ; then
showhelp
else
"$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"
$@
fi
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment