From 60a94daee1caeef160dee2329fdc98fa4b2d627b Mon Sep 17 00:00:00 2001 From: J Phani Mahesh Date: Wed, 2 Mar 2016 18:23:54 +0530 Subject: [PATCH] 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. --- le.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/le.sh b/le.sh index b327a2fb..c1a83c9f 100755 --- a/le.sh +++ b/le.sh @@ -1284,5 +1284,5 @@ createCSR: if [ -z "$1" ] ; then showhelp else - "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" + $@ fi