18 lines
233 B
C
18 lines
233 B
C
|
#include "types.h"
|
||
|
#include "stat.h"
|
||
|
#include "user.h"
|
||
|
|
||
|
int
|
||
|
main(int argc, char **argv)
|
||
|
{
|
||
|
int i;
|
||
|
|
||
|
if(argc < 1){
|
||
|
printf(2, "usage: kill pid...\n");
|
||
|
exit();
|
||
|
}
|
||
|
for(i=1; i<argc; i++)
|
||
|
kill(atoi(argv[i]));
|
||
|
exit();
|
||
|
}
|