![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
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 |
| Passing a variable from a child script back to the parent | Andy82 | Shell Programming and Scripting | 3 | 05-26-2008 09:52 PM |
| parent shell is waiting upon the child shell | ruchirmayank | Shell Programming and Scripting | 0 | 05-06-2008 04:08 AM |
| How to know parent script name from child script | raki | Shell Programming and Scripting | 2 | 06-05-2006 08:01 AM |
| Returning values from child to parent shell | acheepi | Shell Programming and Scripting | 4 | 07-15-2005 03:25 PM |
| return valuse from child script to parent script | borncrazy | Shell Programming and Scripting | 1 | 08-20-2004 03:39 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
I have the following two Korn shell scripts:
SHELL1.ksh #!/usr/bin/ksh nohup sas /abc/123/sasprogram1.sas & SHELL2.ksh #!/usr/bin/ksh ./SHELL1.ksh wait nohup sas /abc/123/sasprogram2.sas & My goal is to run SHELL1.ksh within SHELL2.ksh. SHELL1.ksh runs sasprogram1.sas. I would like SHELL2.ksh to wait until sasprogram1.ksh(within SHELL1.ksh) finishes before running sasprogram2.sas. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|