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 &
        wait
                
        Script3

Check the bash texinfo for more help on background tasks and the wait
command.

-- 
Todd A. Jacobs
Senior Network Consultant





_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to