免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4845 | 回复: 3
打印 上一主题 下一主题

[C] system调用cmd,怎么捕捉错误msg [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-10-29 08:54 |只看该作者 |倒序浏览
这个问题还在问,给单位提过linux_c_py_php兄弟的ftplib解决方案,但是单位还是想用system来解决。
  1. sgq@sgq-PC-MY18AEZE4:~/tools$ cat ftpget.c
  2. #include<stdio.h>

  3. main()

  4. {
  5.         int status;
  6.         //status = system("cat a.txt");
  7.         status = system("busybox ftpget -u sgq1 -p sgq123 10.41.181.207 chin.c chin.c");               //password error
  8.         printf("\n\n\n\n\nstatus = %d\n\n",status);
  9.         printf("1end");
  10.         status = system("busybox ftpget -u sgq -p sgq123 10.41.181.207 chin1.c chin1.c");            // file not exist
  11.         printf("\n\n\n\n\nstatus = %d\n\n",status);
  12.         printf("1end");
  13. }
  14. sgq@sgq-PC-MY18AEZE4:~/tools$ ./ftpget
  15. ftpget: unexpected server response to PASS: 530 Login incorrect.                                           //我想把这里的错误捕捉到,又什么办法么?





  16. status = 256

  17. ftpget: unexpected server response to RETR: 550 Failed to open file.                                       //我想把这里的错误捕捉到,又什么办法么?
  18. 1end




  19. status = 256

  20. 1endsgq@sgq-PC-MY18AEZE4:~/tools$
复制代码

论坛徽章:
324
射手座
日期:2013-08-23 12:04:38射手座
日期:2013-08-23 16:18:12未羊
日期:2013-08-30 14:33:15水瓶座
日期:2013-09-02 16:44:31摩羯座
日期:2013-09-25 09:33:52双子座
日期:2013-09-26 12:21:10金牛座
日期:2013-10-14 09:08:49申猴
日期:2013-10-16 13:09:43子鼠
日期:2013-10-17 23:23:19射手座
日期:2013-10-18 13:00:27金牛座
日期:2013-10-18 15:47:57午马
日期:2013-10-18 21:43:38
2 [报告]
发表于 2012-10-29 09:07 |只看该作者
popen            

论坛徽章:
0
3 [报告]
发表于 2012-10-29 09:44 |只看该作者
本帖最后由 yjchlove 于 2012-10-29 09:45 编辑

我也找到了popen,谢谢兄台。
但是还没看到正常结束怎么来判断。
意思是,
    正常了, 打印,“正确”
    错误了,打印错误信息。
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <err.h>
  4. #define BUF 256
  5. int
  6. main (int argc, char *argv[])
  7. {
  8.         FILE        *fp;
  9.         char        buf[BUF];
  10.         int          flag = 0;
  11.         //char        *cmdline = "/bin/ls -luasx  /bin";
  12.         char        *cmdline = "busybox ftpget -u sgq1 -p sgq123 10.41.181.207 chin.c chin.c";
  13.         if ( (fp=popen(cmdline,"r")) ==NULL) {
  14.                 err(EXIT_FAILURE, "%s", cmdline);
  15.         }

  16.         while(fgets(buf, BUF, fp) != NULL) {
  17.                 (void) fputs(buf, stdout);
  18.                 flag = 1;
  19.         }

  20.         (void) pclose(fp);

  21.         exit (EXIT_SUCCESS);
  22. }
复制代码

论坛徽章:
1
射手座
日期:2014-08-04 16:49:43
4 [报告]
发表于 2012-10-29 11:31 |只看该作者
回复 3# yjchlove


    看不太懂....

     这种工作我一般都是在脚本内全部完成......... 你的问题如果是 结果不正常导致阻塞不能获取信息的话, 你可以尝试走非阻塞,用select 或者poll 去判断
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP