I'm using Babun 1.2.0 with Conemu 161206 [32] and I'm trying to run bash in interactive mode.
I'm using the following Conemu Task paramaters:
/icon "%BABUN%\cygwin\bin\mintty.exe" /dir "%userprofile%"
(The %BABUN%
environment variable points to the directory containing .babun
)
The command is:
%BABUN%\cygwin\bin\mintty.exe /bin/env CHERE_INVOKING=1 /bin/bash.exe --login -i
The --login -i
is getting ignored.
What I've tried:
- Placing
/bin/bash.exe
in quotes causes Conemu to crash. So this does not work:%BABUN%\cygwin\bin\mintty.exe /bin/env CHERE_INVOKING=1 "/bin/bash.exe --login -i"
- Moving
--login -i
and placing it after...\mintty.exe
also does not work.
What is the correct way to pass arguments (--login -i
) to bash?