我用c语言创建了一个小程序。这个程序用fork()函数创建了一些子进程。创建的procceses数量作为控制台的第一个参数给出。我希望有人帮我将这个程序从c转换为bash脚本。
/* The first argument is the amount of the procceses to be created*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
main(int argc, char **argv)
{
int pid,i;
int pnumber;
pnumber=atoi(argv[1]);//Converting the first arg to int so i can put in for loop
for(i=1;i<=pnumber;i++){
pid=fork();// Creating the child procceses with fork
if(pid!=0) { //The child procces prints its id and then exit
printf("The id the created proccess is:%d and it is a child proccess \n",pid);
printf("RETURN\n");
exit(1);
}
}
}
答案 0 :(得分:2)
#!/bin/bash
if [ -z $1 ]; then
echo "I am child"
exit 0
fi
for i in `seq $1`; do
$0 &
echo "The PID of just spawned child is: $!"
done
答案 1 :(得分:2)
fork()是一个系统调用,由编译程序用来创建另一个进程。在shell脚本中不需要它。你可以简单地使用
myscript.sh &
在脚本中开始新进程。