I have a first script getting arguments like this :
while getopts "m:t:r:zsqhc:" opt 2>/dev/null
do
case ${opt} in
m) machine=${OPTARG,^^}
;;
t) [...];;
.
.
And so on. As you can see, some arguments need a value (like a string or a number), and some other don't.
This script then calls two other scripts, which need the same arguments. I would like to know how to give those scripts the arguments.
Thanks in advance !