Hello-
I am running on a dual-processor Linux desktop, and I want to have a simple shell script command that recognizes when the oceanO process ends, and invokes a command to start another run. I am not very familiar with linux-type commands, so any help is appreciated, thanks in advance...
automated process
To run several command in sequence do
The advantage is that if an error occurs, then all stops.
When things become more complicate, you create a file, say, ListComm
you put it as executable with
and you execute it by
Then if you want to run things in the background you can use screen
but screen is not systematically installed and it needs root rights to be installed.
Code: Select all
./FirstCommand && ./SecondCommand && ./ThirdCommand
When things become more complicate, you create a file, say, ListComm
Code: Select all
#!/bin/sh
./firstCommand
./SecondCommand
Code: Select all
chmod +x ListComm
Code: Select all
./ListComm
but screen is not systematically installed and it needs root rights to be installed.