![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Crons executed multiple times. | shorty | UNIX for Dummies Questions & Answers | 2 | 03-14-2007 12:05 PM |
| running multiple rsh command in a script | lweegp | Shell Programming and Scripting | 0 | 10-31-2006 02:37 AM |
| Executing multiple Oracle procedures concurrently | multidogzoomom | Shell Programming and Scripting | 6 | 11-04-2005 02:26 PM |
| matching multiple times in same line | oldtrash | Shell Programming and Scripting | 2 | 04-28-2004 06:57 PM |
| Running a script on multiple machines | nattynatty | UNIX for Advanced & Expert Users | 8 | 07-07-2003 05:43 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Running same script multiple times concurrently...
Hi,
I was hoping someone would be able to help me out. I've got a Python script that I need to run 60 times concurrently (with the number added as an argument each time) via nightly cron. I figured that this would work: 30 1 * * * for i in $(seq 0 59); do [script] $i \&; done However, it seems to run it 60 times in sequence (waiting for each script instance to finish), instead of sending each one to the background and moving on through all 60. Anybody have any ideas on how I can get this to work as intended? What am I doing wrong? Any help would be appreciated. Thanks, Cedric |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|