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.
This commit is contained in:
J Phani Mahesh 2016-03-02 18:23:54 +05:30
parent d250f9c715
commit 60a94daee1
1 changed files with 1 additions and 1 deletions

2
le.sh
View File

@ -1284,5 +1284,5 @@ createCSR:
if [ -z "$1" ] ; then
showhelp
else
"$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"
$@
fi