Following this post I wasn't able run shell trough Git bash. This is the batch file :
%ComSpec% /c ""C:\Program Files\Git\git-bash.exe" --login -i -- C:\Users\rmrd001\Documents\Git\scripts\first\test.sh"
pause
This is the shell script:
echo Hello, World!
And this is what I get when batch is run:
I can see the instantaneous appearance of the bash program, but can't catch the text into it. I double-triple-checked the paths, they are correct. I ran the script trough the Git bash, everything worked well (the message appeared).
Any ideas?