|
From: Kraus P. <phi...@fl...> - 2012-10-25 14:27:43
|
Am 25.10.2012 um 15:11 schrieb Earnie Boyd: > On Thu, Oct 25, 2012 at 4:43 AM, Kraus Philipp wrote: >> Hello, >> >> I try to run more than one command within the MinGW shell: cd mydir; ./configure; make; make install >> but this does not work. The cd command creates the error that the path does not exists, but if I run each >> command alone all commands are working. >> > > Yes, it works. The execution stops at the first failing command. If > you want the execution of the commands to execute regardless of if > they fail then you need to use || instead of ; where || represents OR. > The ; is being treated as && which represents AND. Yes I know, but ; is correct. It seems the "cd" command fails Phil |