#! /bin/sh
# Carry out specific functions when asked to by the system
case "$1" in
start)
chmod a+rwx /var/www/html/Images/*
echo "success"
;;
stop)
;;
*)
我在這裏看到了很多for循環中分叉的例子,但沒有太多說明它是如何做到的。讓我們以How to use Fork() to create only 2 child processes?的答案爲例,使用這個簡單的例子。 for (i = 0; i < n; ++i) {
pid = fork();
if (pid) {
continue;
} else if