Skip to content

Run a bunch of jobs at the same time locally

To run a bunch of jobs concurrently in CSH run:

#!/bin/csh
set i = 1
while ( $i <= 30 )
    set name = "run_name_${i}"
    do_something $name &
    @ i++
end
wait

Categories

Linux

TheSoftwareProgrammer View All

I like science and writing software.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

%d bloggers like this: