易网时代-编程资源站
Welcome
微信登录
编程资源
图片资源库
蚂蚁家优选
PDF转换器
软件资源
软件开发
、
小程序制作
、
系统集成与运维
、
空间租用
、
硬件开发
、
视频监控
、
技术咨询与支持
——联系电话:0311-88999002/88999003
首页
/
操作系统
/
Linux
/
Linux之根据某进程名杀死进程
Linux之根据某进程名杀死进程:
#include <iostream>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
using
namespace
std;
int
main()
{
/*int fd;
fd = open("/sddisk/tmpfile",O_RDWR|O_CREAT);
if(fd==-1)
{
printf("Read sdcard failure!");
}
else
{
printf("Read sdcard success!");
}
char ch[10];
char cc ;
char szBuff[256];
short int i = 0;
short int j = 0;
FILE *fp;
system("ls /dev/>/tmp/a.txt");
fp = fopen("/tmp/a.txt", "r");
while( !feof( fp ))
{
memset( szBuff, 0, 256 );
fgets( szBuff, 256, fp );
if(NULL != strstr(szBuff,"mmcblk")){
printf("Read sdcard success! ");
break;
}
}
fclose(fp);
system("rm /tmp/a.txt");*/
char
ch[10];
char
cc ;
char
szBuff[256];
short
int
i = 0;
short
int
j = 0;
FILE
*fp;
system(
"ps -www | grep output_file* >/tmp/a.txt"
);
fp = fopen(
"/tmp/a.txt"
,
"r"
);
while
( !feof( fp ))
{
memset( szBuff, 0, 256 );
fgets( szBuff, 256, fp );
char
buf[10];
memset( buf, 0, 10 );
sscanf(szBuff,
"%[^root]"
, buf);
printf(
"wyz------------sssxx:%s "
,buf);
string ss(buf);
ss=
"kill -9"
+ss;
system(ss.c_str());
printf(
"wyz------------ss:%s "
,szBuff);
break
;
}
fclose(fp);
system(
"rm /tmp/a.txt"
);
return
1;
}
收藏该网址
版权所有©石家庄振强科技有限公司2024
冀ICP备08103738号-5
网站地图