Reputation: 61
Is there a way to call a bash script? (Or any linux like command) from a batch file (or VB script) on a windows box?
Thanks K
Upvotes: 0
Views: 339
Reputation: 12214
If you have Cygwin installed then a line like this in your batch file should run the bash script:
bash scriptname.sh
Upvotes: 1