> cat test.sh#!/bin/bashecho "argv[0] = ${0}"echo "argv[1] = ${1}"echo "argv[2] > = ${2}"echo "count = ${#}"===================> bash -c ./test.sh abc > defargv[0] = ./test.shargv[1] =argv[2] =count = 0===================> bash > ./test.sh abc defargv[0] = ./test.shargv[1] = abcargv[2] = defcount = > 2===================> bash -versionGNU bash, version 5.0.17(1)-release > (x86_64-pc-linux-gnu)Copyright (C) 2019 Free Software Foundation, Inc.License > GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software; you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.
Looking for input. Regards Sanjay