2007-08-08 08:50:23 +00:00
|
|
|
#include "types.h"
|
|
|
|
#include "stat.h"
|
|
|
|
#include "user.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
2009-05-31 00:39:17 +00:00
|
|
|
|
2007-08-08 08:50:23 +00:00
|
|
|
if(argc < 1){
|
|
|
|
printf(2, "usage: kill pid...\n");
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
for(i=1; i<argc; i++)
|
|
|
|
kill(atoi(argv[i]));
|
|
|
|
exit();
|
|
|
|
}
|