Re: Controlling Process Order/Timing

2000-11-27 Thread Bill Carlson
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

Re: Controlling Process Order/Timing

2000-11-26 Thread Cameron Simpson
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

Re: Controlling Process Order/Timing

2000-11-26 Thread Todd A. Jacobs
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 &

Controlling Process Order/Timing

2000-11-25 Thread SoloCDM
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