linux - Execute three executables one by one -


Make three executables eligible for three separate files and execute each one of these files. If I write makefiles or any other way.

Even if the above is completed then I need to execute these files by typing in the Flash so that one leads to the second execution and the other is the third.

, Mayank

In the Bash you can & amp; Amp; Operator to run the program continuously to exit

ls & amp; Amp; CD / End amp; MV Test 1 Test 2

But if you want to walk without using exit status;

ls; CD /; MV Test 1 Test 2


Comments