On Mon, 27 Nov 2000, Cameron Simpson wrote:
> On Sat, Nov 25, 2000 at 04:31:23PM -0700, SoloCDM <[EMAIL PROTECTED]> wrote:
> | I'm trying to force commands following each other in a script to
> | execute one at a time once the preceding command has finished.
>
> But this is the _normal_ behaviour
On Sat, Nov 25, 2000 at 04:31:23PM -0700, SoloCDM <[EMAIL PROTECTED]> wrote:
| I'm trying to force commands following each other in a script to
| execute one at a time once the preceding command has finished.
But this is the _normal_ behaviour!
command1
command2
command3
On Sat, 25 Nov 2000, SoloCDM wrote:
> I'm trying to force commands following each other in a script to
> execute one at a time once the preceding command has finished.
Use something like the following:
#!/bin/bash
Script1 &
wait
Script2 &
I'm trying to force commands following each other in a script to
execute one at a time once the preceding command has finished.
I applied the command nice with the options to a list of commands and
didn't get the results I was seeking. I'm aware that pidof, grep,
sed, and a few others can do the