在c語言中調用shell指令碼方法

來源:互聯網
上載者:User

static int
SearchUsingRouteCmd (char *address, struct in_addr *in,struct in_addr *addr_out, char *best_if, size_t best_iflen,unsigned long *best_netmask)
{
 char mask[20];
 char routecmd[MAXSTR];
 int best_metric = INT_MAX;
 char buf[2048];
 char interface[MAXSTR];
 char  *cp, *sp;
 int done = 0;
 FILE *routefd = NULL;
 uint32_t maskbits;

 /* Open route and get the information */
 /*將命令儲存在routecmd變數中*/
 snprintf (routecmd, sizeof(routecmd), "%s %s %s",ROUTE, ROUTEPARM, address);
 /*執行命令列,並獲得檔案描述符*/
 routefd = popen (routecmd, "r");
 if (routefd == NULL)
  return (OCF_ERR_GENERIC);
 mask[0] = EOS;
 interface[0] = EOS;
 /*操作檔案描述符,並擷取命令列執行後列印的訊息*/
 while ((done < 3) && fgets(buf, sizeof(buf), routefd)) {
  int buflen = strnlen(buf, sizeof(buf));
  cp = buf;
  sp = buf + buflen;
  while (sp!=buf && isspace((int)*(sp-1))) {
   --sp;
  }
  *sp = EOS;
  buf[buflen] = EOS;
  if (strstr (buf, "mask:")) {
   /*strsep(&cp, ":");cp++;*/
   cp = strtok(buf, ":");
   cp = strtok(NULL, ":");cp++;
   strncpy(mask,cp,sizeof(mask));
                   done++;
  }
  if (strstr (buf, "interface:")) {
   /*strsep(&cp, ":");cp++;*/
   cp = strtok(buf, ":");
   cp = strtok(NULL, ":");cp++;
   strncpy(interface, cp, sizeof(interface));
                   done++;
  }
 }
 fclose(routefd);
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.