Sponsored Content
Top Forums Programming help me understand exec() family of calls... Post 302301659 by c_d on Friday 27th of March 2009 02:37:00 PM
Old 03-27-2009
help me understand exec() family of calls...

how does exec() do it? on successful call of exec() family of functions, they never return...

how to i emulate that.

assume the standard example,

Code:
execl("/bin/ls","ls",NULL);

now this would never return.

i m trying to emulate exec()'s never to return feature...

Code:
#include<unistd.h>
#include<stdio.h>
#include<stdlib.h>

void myexec(const char* path,const char* argv)
{
    chdir(path);
    system(argv);
    exit(100);   
}


int main(int argc,char *argv[])
{
    if(argc!=3)
    {
        printf("USAGE:%s <path> <command>\n",argv[0]);
        exit(1);
    }   
    if( fork() == 0)
    {
        myexec(argv[1],argv[2]);
    } 
    else
    { 
          exit(0);      
     }
    printf("this should never be executed");    
}

i m not trying anything fancy...only to emulate the "no return" feature once a command is executed.

so when i run this program
(trial 1)
Code:
[c_d@localhost cfiles]$ gcc 1.c
[c_d@localhost cfiles]$ ./a.out /bin/ls ls
1.c      a.out         fcopy.c~  frevread.c~    msg~     prgm1.c~  prgm2.c~  prgm3.c~  prgm4.c~  prgm5.c~  prgm7.c     sth~
1.c~      cfiles.tar.7z  file1~    key.c    prgm1     prgm2       prgm3     prgm4     prgm5     prgm6.c   prgm7.c~
alpha.c~  f1~         fread.c~  key.c~    prgm1.c  prgm2.c   prgm3.c   prgm4.c   prgm5.c     prgm6.c~  printip.c~
[c_d@localhost cfiles]$

(trial 2)
Code:
[c_d@localhost cfiles]$ ./a.out /home/c_d/workspace/unix/shellscripts/ ./leapyear_prgm07.sh
2009 is not a leap year
[c_d@localhost cfiles]$



i get what i want...the line "this should never be executed" never gets printed


please help me grasp the internals of exec() call... and explain to me how it works

also please explain to me, why in execl*() a set of arguments is preferred to be passed as in
Code:
execl ("/bin/ls", "ls", "-l", (char *)0);

when it could have been implemented as
Code:
execl ("/bin/ls", "ls -l", (char *)0);

instead
i have same complaint with execv*() style exec()...

thank you.

Last edited by c_d; 03-27-2009 at 03:54 PM..
 

9 More Discussions You Might Find Interesting

1. IP Networking

Identification of data calls & voice calls

Is there any facility to filter/identify the data calls and voice calls coming throug modem? OR Can we get the data or voice calls information through a script(preferably C Kermit)? (0 Replies)
Discussion started by: pcsaji
0 Replies

2. OS X (Apple)

Address family not supported by protocol family

Hi, I compiled with no error a C program, than I tryed to execute it and than I get this error: connessione al server fallita: Address family not supported by protocol family What does it mean? Why I get this error only on Mac os x while on Ubuntu the program works? The code is:... (3 Replies)
Discussion started by: DNAx86
3 Replies

3. Shell Programming and Scripting

bash shell: 'exec', 'eval', 'source' - looking for help to understand

Hi, experts. Whould anybody clear explay me difference and usage of these 3 commands (particulary in bash) : exec eval source I've tryed to read the manual pages but did not get much. Also could not get something useful from Google search - just so much and so not exactly, that is... (3 Replies)
Discussion started by: alex_5161
3 Replies

4. UNIX for Dummies Questions & Answers

Family tree illustrated

hello is there a family tree, or words that would illustrate the family tree of, Unix -> Linux As i would understand Unix, it is a OS. And Linux is a ?, is Linux a OS or a sub structure inside of the Unix OS ?. Have you ever seen one of those family tree`s where ma and pa are shown at... (3 Replies)
Discussion started by: cowLips
3 Replies

5. Shell Programming and Scripting

Script Variables Inquiry, Values Okay in Standalone Exec, No-Show in Cron Exec

I have the following bash script lines in a file named test.sh. #!/bin/bash # # Write Date to cron.log # echo "Begin SSI Load $(date +%d%b%y_%T)" # # Get the latest rates file for processing. # d=$(ls -tr /rms/data/ssi | grep -v "processed" | tail -n 1) filename=$d export filename... (3 Replies)
Discussion started by: ginowms
3 Replies

6. Shell Programming and Scripting

Not able to understand use exec command

Hi i am in learning phase of unix. i was going through exec in a unix book. below is the command exec n>file exec n>>file however when i used the exec command like below , where ex is the file name exec 2>>exand then do ls -lrt then again when i do the ls -lrt to see the size of the file... (3 Replies)
Discussion started by: scriptor
3 Replies

7. Programming

Working of exec family of functions

Hi, I am studying exec family of functions.Its man page says,it replaces the current process image with a new process image. If it replaces the binary,then after returning back,how does it get the previous parameters of the process which called exec?As replacing process image means replacing all... (1 Reply)
Discussion started by: Radha.Krishna
1 Replies

8. UNIX for Dummies Questions & Answers

Working of exec family of functions

Hi, I am studying exec family of functions.Its man page says,it replaces the current process image with a new process image. If it replaces the binary,then after returning back,how does it get the previous parameters of the process which called exec?As replacing process image means replacing... (5 Replies)
Discussion started by: Radha.Krishna
5 Replies

9. Programming

Simple shell running with exec family

# Erroneous question, so can be removed. (0 Replies)
Discussion started by: beginnerboy
0 Replies
All times are GMT -4. The time now is 08:43 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy