I wanted to start an interactive bash shell like this :
bash (...some options) 1 2 3
so that in the shell session, I have $1=1, ...
I didn't find any options to achieve the effect.
I tried this, thought it might work :
bash -c bash _ 1 2 3
but it didn't.