0

Normally, I manually execute some Cygwin commands to run a Makefile. It is just a chain of 2 commands:

$ cd 'path\to\my\folder'
$ make

I would like to automatize this task by running a labview program that does this for me, but i do not know how to do it.

I have checked this web: http://www.labvolution.com/executing-perl-scripts-labview/.

In that tutorial, the guy runs a cygwin command from LabView with the System Terminal Exec vi, and with this command, he executes a program. However, in my case, it does not work, since I just don't see anything happening. Furthermore, in my case, i need two successive commands (cd and then make), not just one.

Any ideas on how to do this?

taras
  • 6,566
  • 10
  • 39
  • 50
Jorge S
  • 81
  • 1
  • 9

1 Answers1

-1

what about

command1 && command2

or

command1; command2
Jonas Bjork
  • 158
  • 3