I am using Cygwin and wish to run it with diff params so I can change dir as soon as I launch in Windows.
For example
bash --login -i ; cd /
or
bash --login -i ; cd /tmp
but the cd does not work, how can I pass a change directory to
bash --login -i
FYI I can't put the cd in .bash, it has to be passed in
tried this with no luck
bash --login -i -s cd /tmp;