Is it possible to launch a Windows program from the Cygwin Shell? (similar to firing unix commands in PHP with "exec(…)")

My example: I'd like to launch a database backup in cygwin, however the mysqldump does not exist for cygwin. Therefore I need to fallback to the Windows version (c:\xampp\mysql\bin\mysqldump …). Is it possible to launch this from within Cygwin?

link|improve this question
feedback

migrated from stackoverflow.com Jun 5 '11 at 1:45

This question came from our site for professional and enthusiast programmers.

1 Answer

Sure, just run it. The path is probably something like /cygdrive/c/xampp/mysql/bin/mysqldump. Just remember that any paths you pass TO mysqldump need to be in Windows (not cygwin) format. Or you can use the cygpath program to convert the paths for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.