Saturday, April 6, 2013

Running an executable from bash script

A bash script will always finish the script after completion of any called script or executable. example:
@echo off
echo hello
"C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
echo hope you had fun browsing the web!
pause
This will always echo the last line of code as soon as firefox is closed.

No comments:

Post a Comment