Executing a bash script from a windows bat file
Is there a way to call a bash scr开发者_开发知识库ipt? (Or any linux like command) from a batch file (or VB script) on a windows box?
Thanks K
If you have Cygwin installed then a line like this in your batch file should run the bash script:
bash scriptname.sh
精彩评论