Go to the
first
,
previous
,
next
,
last
section,
table of contents
.
kill
`kill(LIST)'
`kill LIST'
リストで示されるプロセスにシグナルを送る。 リストの第一要素は送るべきシグナルでなければならない。 シグナル送信に成功したプロセスの数を返す。
$cnt = kill 1, $child1, $child2; kill 9, @goners;
シグナルが負の場合、プロセスではなくプロセスグループを
kill
する。 (
System V
では、 負のプロセス番号はプロセスグループも
kill
するが、互換性はない。) シグナル名を指定してもよい。
Go to the
first
,
previous
,
next
,
last
section,
table of contents
.