![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to write a wrapper c code to return uid using getuid() function | pwd | High Level Programming | 4 | 05-13-2008 07:01 AM |
| how to write script in tar | naveeng.81 | Shell Programming and Scripting | 1 | 04-18-2008 09:04 AM |
| New wrapper script will be developed to wrap two ksh scripts | ishai82 | Shell Programming and Scripting | 3 | 03-17-2008 12:45 AM |
| What is a wrapper script | thana | UNIX for Dummies Questions & Answers | 1 | 01-28-2008 04:11 AM |
| How to write script for this ? | me_haroon | AIX | 0 | 07-01-2006 03:30 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
What is wrapper script and how to write
hi guys,
I have a requirement to run a script 4 times with different parameter values. the 4 jobs have to run parallely which actually access different data of same table and deletes. how can i achieve this.................? Thanks in advance |
| Forum Sponsor | ||
|
|
|
|||
|
Code:
#!/bin/ksh myfile.sh parm1 parm2 & myfile.sh parm3 parm4 & myfile.sh parm5 parm6 & myfile.sh parm7 parm8 & wait |
|||
| Google The UNIX and Linux Forums |