program stops after execvp( command.argv[0], command.argv)

后端 未结 3 629
闹比i
闹比i 2021-01-23 23:55

I am writing a small shell program that takes a command and executes it. If the user enters a not valid command the if statement returns a -1. If the command is correct it exe

3条回答
  •  无人共我
    2021-01-24 00:18

    From man page of execvp(3)

    The exec() family of functions replaces the current process image with a new process image

    So your current process image is overwritten with the image of your command! Hence you need to use a fork+exec combination always so that your command executes in the child process and your current process continues safely as a parent!

    On a lighter note I want to illustrate the problem with a picture as a picture speaks a thousand words. No offence intended :) :)

    enter image description here

提交回复
热议问题