![]() |
|
|
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 |
| Exit from n th child shell | indra_saha | UNIX for Dummies Questions & Answers | 4 | 09-26-2008 06:48 AM |
| Getting exit status of child in trap handler | rimon | Shell Programming and Scripting | 4 | 06-17-2008 02:05 AM |
| Can a child process return a specific value to a parent process ? | Ametis1970 | High Level Programming | 8 | 04-10-2008 12:22 AM |
| Status of child job after parent is killed | anjul_thegreat | High Level Programming | 7 | 06-29-2007 07:36 AM |
| exit status | moxxx68 | Shell Programming and Scripting | 1 | 12-04-2004 07:27 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
I have a C shell script on Linux that spawns a child process. If I run the child process in the foreground, I am able to capture its exit status via $status but not its PID. If I run it in the background (and force the parent to wait via the "wait" command) I am able to capture the PID of the child via $! but not the exit status. Both the $? and $status variables now hold the exit status of the "wait" command.
Any ideas? |
| Bookmarks |
| Tags |
| background, child process, exit status, foreground, pid |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|