SPAWN Multiple Processes in Unix


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SPAWN Multiple Processes in Unix
# 1  
Old 11-02-2012
SPAWN Multiple Processes in Unix

Hi,

I have three files in my IN directory.Each file should be copied 25 times using for loop.Each file processing should run in parallel?How to spawn multiple processes in unix?Any help would be appreciated.

Thanks,
Liyakath
# 2  
Old 11-02-2012
Do you have more clues ?
Are they going to be copied 25 times at 25 differents destinations ?
# 3  
Old 11-02-2012
no,same destination.
# 4  
Old 11-02-2012
If it is to a single destination, why do you need to copy it 25 times instead of just once?
# 5  
Old 11-02-2012
Please find below the code:

Code:
for i in `ls -lrt | sort | grep -v total | awk '{print \$NF}'` /list of files in    a    directory
do
  for j in {1..29}                    #29 times the files should be copied
  do
    echo "copying $i file to $outputdir"
    cp $i $HOME/$outputdir/$i.$j.inp    #copy each file as filename.$j.inp 
  done
done


Thanks,
Ali.

Last edited by Scott; 11-03-2012 at 11:34 AM.. Reason: Please find above code tags :)
# 6  
Old 11-02-2012
1) Did you set the outputdir variable ?
2) Can't you just : for i in `ls -rt` instead of for i in `ls -lrt | sort | grep -v total | awk '{print $NF}'`

(It doesn't really make sens to make a "sort" on an 'ls -lrt' output ...)

Last edited by ctsgnb; 11-02-2012 at 02:04 PM..
# 7  
Old 11-02-2012
If you're doing ls | grep | awk | sed | kitchen | sink, you can probably just do it all in awk and save yourself a lot of performance.

That's also a useless use of backticks. It's almost always better to use a while-read loop if possible.

Code:
ls -rt | while read i
do
        for j in {1..29} #29 times the files should be copied
        do
                echo "copying $i file to $outputdir"
                cp $i $HOME/$outputdir/$i.$j.inp #copy each file as filename.$j.inp
        done
done

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Spawn and join multiple process

I am doing some file manipulation and then a bcp once all the files are processed. I need to do the following for all files in dirctory begin -Step 1 use another shell/perl to format the file done in the end load into db using bcp I want to do step 1 and step in a seperate... (2 Replies)
Discussion started by: tasmac
2 Replies

2. Shell Programming and Scripting

need help ps -e on multiple processes

:)Hi there, I am new to scripting and wanted to see if someone can show me how to grep on multiple processes and send the output to a file in /home/mydir/output. I am aware of ps -ef | grep on 1 process but need help looking up multiple processes, can you use this command ps -elf | grep |pid1... (4 Replies)
Discussion started by: abbya
4 Replies

3. Shell Programming and Scripting

Unix script that can spawn

Hi I need a unix script that can spawn 100 unix PIDs that each execute the lgtst command as <Sid>adm within milliseconds. Thanks in advance Rgd Ruud van Ruler (4 Replies)
Discussion started by: Snrru0
4 Replies

4. UNIX for Advanced & Expert Users

Spawn a new unix window by command

Hi Experts, I hav a question for you.. Can we open a new window(SunOS 5.10,Putty) by a unix_command from the one we're on? Is it possible? Thanks. (2 Replies)
Discussion started by: Hunter85
2 Replies

5. UNIX for Dummies Questions & Answers

Bash: Regulating the number of processes a script can spawn

I've been working on some scripts in which I spawn some background processes. I'd like to be able to limit the number of processes, but have my script spawn additional processes as previous tasks finish. So, let's say I have 20 tasks to complete. Any given task could take from 1 to 10 minutes. ... (7 Replies)
Discussion started by: treesloth
7 Replies

6. Shell Programming and Scripting

Finding the age of a unix process, killing old processes, killing zombie processes

I had issues with processes locking up. This script checks for processes and kills them if they are older than a certain time. Its uses some functions you'll need to define or remove, like slog() which I use for logging, and is_running() which checks if this script is already running so you can... (0 Replies)
Discussion started by: sukerman
0 Replies

7. Programming

Program to spawn multiple processes

I'm trying to make a program that will spawn multiple child processes then exit. I'm having trouble figuring out how to do this since after I fork, the child process begins running the program again (never ending). int main(void){ for(int i = 0; i < 3; i++){ fork(); }... (1 Reply)
Discussion started by: cagney58
1 Replies

8. Shell Programming and Scripting

shell script for getting pid of spawn processes from shell

Hi, I am new this forum. I request you peoples help in understanding and finding some solution to my problem. Here it goes: I need to perform this set of actions by writing a shell script. I need to read a config file for the bunch of processes to execute. I need to fecth the pid of... (4 Replies)
Discussion started by: sachin4sachi
4 Replies

9. Shell Programming and Scripting

Doubt about multiple processes

Suppose that I am performing some operation on an sql database. Lets say process of Searching and then if a value is found, updating it... Now, when I have some millions of records on which the operation has to be performed... Does it help to spawn multiple processes each executing the same... (9 Replies)
Discussion started by: Legend986
9 Replies

10. Programming

Howto spawn multiple child processes and wait?

As far as I can tell, the bash wait command waits for a logical "AND" of all the child processes. Assuming I am coding in C: (1) What is the function I would use to create multiple bash child process running perl? (2) What is the function I would use to reinvent the bash wait command so I... (4 Replies)
Discussion started by: siegfried
4 Replies
Login or Register to Ask a Question