Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Executing several scripts at the same time?

Status
Not open for further replies.

bi

Technical User
Apr 13, 2001
1,552
US
Is there some way to kick off 5 scripts all at the same time? We are trying to emulate updating 5 different things at the same time and compare the performance of our Unix system.

Thanks for any suggestions.
 
quite easy actually
[tt]
#!/bin/ksh

script1 &
script2 &
script3 &
script4 &
script5 &

wait
[/tt]


The [tt]&[/tt] character puts the command you run 'into the background' and lets you do other things without having to wait for it to finish.

The script above will wait for all of the scripts it starts to finish - if you don't want it to do that, delete the 'wait' line.
Mike
michael.j.lacey@ntlworld.com
Email welcome if you're in a hurry or something -- but post in tek-tips as well please, and I will post my reply here as well.
 
Mike,

Boy, am I embarassed! Thanks.
 
Ummm - didn't mean to embarass you bi - it certainly wasn't a silly question. Mike
michael.j.lacey@ntlworld.com
Email welcome if you're in a hurry or something -- but post in tek-tips as well please, and I will post my reply here as well.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top