Kurt
Kurt

Reputation: 61

Executing a bash script from a windows bat file

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

Answers (1)

sashang
sashang

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

Related Questions