C/C++코드 로 ip 이 통 하 는 지 확인 합 니 다(awk 와 system 에 맞 춰 대량 검 사 를 할 수 있 습 니 다)
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
using namespace std;
string getCmdResult(const string &strCmd) // , system,
{
char buf[10240] = {0};
FILE *pf = NULL;
if( (pf = popen(strCmd.c_str(), "r")) == NULL )
{
return "";
}
string strResult;
while(fgets(buf, sizeof buf, pf))
{
strResult += buf;
}
pclose(pf);
unsigned int iSize = strResult.size();
if(iSize > 0 && strResult[iSize - 1] == '
') // linux
{
strResult = strResult.substr(0, iSize - 1);
}
return strResult;
}
int main(int argc, char *argv[])
{
if(argc != 2)
{
cout << "no" << endl;
return -1;
}
string strCmd = "ping " + string(argv[1]) + " -w 1";
string strRe = getCmdResult(strCmd);
if(strRe.find("received") != string::npos && strRe.find(", 0 received") == string::npos)
{
cout << "ipok:" + string(argv[1]) << endl;
}
else
{
cout << argv[1] << endl;
}
return 0;
}
테스트 해 보기:
ubuntu@VM-0-13-ubuntu:~$ ./a.out
no
ubuntu@VM-0-13-ubuntu:~$ ./a.out 1.1.1.1
1.1.1.1
ubuntu@VM-0-13-ubuntu:~$ ./a.out 172.16.0.13
ipok:172.16.0.13
ubuntu@VM-0-13-ubuntu:~$ ./a.out www.baidu.com
ipok:www.baidu.com
ubuntu@VM-0-13-ubuntu:~$
위의 ping 테스트 의 시간 초과 시간 은 1s 이 므 로 스스로 고 칠 수 있 습 니 다. 또한 a.txt 파일 이 있 으 면 줄 마다 ip 이 있 는데 어떤 ip 이 핑 통 할 수 있 는 지 어떻게 압 니까?awk 와 system 을 시작 합 시다.우 리 는 이미 말 했 습 니 다.ubuntu@VM-0-13-ubuntu:~$ cat a.txt
1.1.1.1
www.baidu.com
www.qq.com
ubuntu@VM-0-13-ubuntu:~$
ubuntu@VM-0-13-ubuntu:~$
ubuntu@VM-0-13-ubuntu:~$
ubuntu@VM-0-13-ubuntu:~$ awk '{cmd="./a.out " $1; system(cmd)}' a.txt
1.1.1.1
ipok:www.baidu.com
ipok:www.qq.com
ubuntu@VM-0-13-ubuntu:~$
1.1.1.1 ping 이 통 하지 않 고 나머지 는 ping 이 통 할 수 있 음 을 알 수 있다.
위 에 awk 와 system 을 사용 하 는 데 문제 가 있 습 니 다.ip 이 너무 많 으 면 모든 ip 검 측 이 끝 난 후에 야 마지막 결 과 를 알 수 있 습 니 다.즉,ip 하 나 를 처리 한 후 바로 결 과 를 볼 수 있 는 것 은 아니다.어 떡 하지?프로그램 을 써 서 파일 을 한 줄 씩 읽 을 수 있 습 니 다.다음 을 보십시오.
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fstream>
#include <string>
using namespace std;
string getCmdResult(const string &strCmd)
{
char buf[10240] = {0};
FILE *pf = NULL;
if( (pf = popen(strCmd.c_str(), "r")) == NULL )
{
return "";
}
string strResult;
while(fgets(buf, sizeof buf, pf))
{
strResult += buf;
}
pclose(pf);
unsigned int iSize = strResult.size();
if(iSize > 0 && strResult[iSize - 1] == '
') // linux
{
strResult = strResult.substr(0, iSize - 1);
}
return strResult;
}
string ipCheck(const string &ip)
{
string strCmd = "ping " + ip + " -w 1";
string strRe = getCmdResult(strCmd);
if((strRe.find("received") != string::npos && strRe.find(", 0 received") == string::npos))
{
return "ipok:" + string(ip);
}
else
{
return ip;
}
}
int main(int argc, char *argv[]) // ./a.out a.txt b.txt
{
if(argc != 3)
{
cout << "error" << endl;
return -1;
}
string strCmd = "rm -rf " + string(argv[2]);
system(strCmd.c_str());
strCmd = "wc -l " + string(argv[1]) + "| awk '{print $1}'"; //
string strNumLine = getCmdResult(strCmd);
ifstream in(argv[1]);
string filename;
string line;
unsigned int i = 0;
if(in) //
{
while (getline (in, line)) // line
{
// ip
string strResult = ipCheck(line);
strCmd = "echo " + strResult + " >> " + string(argv[2]) ;
cout << strCmd << endl;
system(strCmd.c_str());
}
}
else //
{
cout <<"no such file" << endl;
}
return 0;
}
결 과 를 보다.ubuntu@VM-0-13-ubuntu:~/tmp_test$ ls
a.txt test.cpp
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$ cat a.txt
1.1.1.1
2.2.2.2
www.baidu.com
3.3.3.3
4.4.4.4
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$ g++ test.cpp
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$ ./a.out a.txt b.txt
echo 1.1.1.1 >> b.txt
echo 2.2.2.2 >> b.txt
echo ipok:www.baidu.com >> b.txt
echo 3.3.3.3 >> b.txt
echo 4.4.4.4 >> b.txt
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$
ubuntu@VM-0-13-ubuntu:~/tmp_test$ cat b.txt
1.1.1.1
2.2.2.2
ipok:www.baidu.com
3.3.3.3
4.4.4.4
ubuntu@VM-0-13-ubuntu:~/tmp_test$
총결산
이상 은 이 글 의 모든 내용 입 니 다.본 고의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가 치 를 가지 기 를 바 랍 니 다.여러분 의 저희 에 대한 지지 에 감 사 드 립 니 다.더 많은 내용 을 알 고 싶다 면 아래 링크 를 보 세 요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
hdu 1717 소수 화 점수 2 (수학)소수 화 점수 2 레이 는 수학 시간 에 선생님 의 말씀 을 듣 고 모든 소수 가 점수 로 표시 되 는 형식 이 라 고 말 했다. 그 는 녹 기 시 작 했 고 곧 완성 되 었 다. 그러나 그 는 또 하나의 문 제 를...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.