在bash中,当我输入ls
并按Enter键时,二进制文件ls
将会运行,我将再次返回shell提示符,而不会从我这边做任何事情。
然而,用C语言写的这个程序会阻止:
#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>
int main(void)
{
pid_t other = fork();
// other will be 0 for the child process
// other will be the childs process' value in the parent process.
switch(other) {
case 0:
printf("%s %i\n", "I am the child process!", other);
execl("/bin/ls","ls",NULL);
return 0;
default:
printf("%s %i\n", "I am the parent process!", other);
return 1;
}
}
为什么?
输出如下:
Korays-MacBook-Pro:~ koraytugay$ ./a.out
I am the parent process! 40309
I am the child process! 0
Korays-MacBook-Pro:~ koraytugay$ AndroidStudioProjects Movies happyko koray.i
Applications Music hello.c koray.o
ClionProjects Pictures hello.sh koray.s
Code Public innbound mssql
Desktop TheElementsFiles innbound-pf nono.txt
Documents VirtualBox VMs innbound_usage.log svn-key
Downloads a.out k.txt tugay.c
IdeaProjects asm.asm klinnck webtoolkit
Koray.class asm.hack klinnck-pf
Koray.java cexamples koray.a
Library fifa.sql koray.c
此时我需要点击 Enter 以便返回bash提示符。为什么呢?
答案 0 :(得分:5)
此时我需要点击 ENTER ,以便返回bash提示符。
实际上,你已经回到了提示,你只是没有意识到。
详细说明,您面临的问题是,父母不会等待孩子退出并事先返回孩子完成执行。因此,shell提示符返回,然后chlid进程的输出(ls
的输出)打印在输出上。
如果您注意到正确,您已经收到提示,并且您的输出稍后会显示。
Korays-MacBook-Pro:~ koraytugay$ ./a.out
I am the parent process! 40309
I am the child process! 0
****Korays-MacBook-Pro:~ koraytugay$***** AndroidStudioProjects Movies happyko koray.i
Applications Music hello.c koray.o
ClionProjects Pictures hello.sh koray.s
Code Public innbound mssql
Desktop TheElementsFiles innbound-p
以上,请注意****
标记的行。在那里,你得到了你的shell提示。
答案 1 :(得分:4)
此时我需要按Enter键以便返回bash。
除了不,你已经在bash了。但是在提示之后输出的所有内容使得它看起来不是。来吧,尝试另一个命令。