Here is the scenario: suppose I set positional variables:
set 1 2 3 4
eval "args_$1=something"
how do I read args_1,args_2,args_3... variables I tried
echo $args_$1
and this also not working
eval "\$$(echo arg_$1)"
How do I get value of $arg_1, to display on terminal or pass to a function, etc.