I want to assign a variable in the command that I pass to parallel
:
parallel "my_variable={}_33; echo $my_variable" ::: a b c
The output should be:
# a_33
# b_33
# c_33
Of course, this is just a toy example. In the real example I want to do other things with that variable.