博客
关于我
一个C/C++ 命令行参数处理的程序
阅读量:373 次
发布时间:2019-03-04

本文共 1284 字,大约阅读时间需要 4 分钟。

最近在学习K&R C中讲解的关于UNIX系统下运行命令的参数的讲解,其中可选参数  -x  -n  可以被-xn取代。

这种处理方法的代码非常精练,这里记录下来以后用得上

代码如下  这是一个查找输入的行中是否含有匹配字符串的命令 并且有 -x -n两个可选参数。

vs2015和gcc下编译通过

#define _CRT_SECURE_NO_WARNINGS#include 
#include
#define MAXLINE 1000int getline_s(char *line, int max);/* print the line match the pattern with * the first input parameter. * support the optional parameter -x -n or -xn * before the pattern */int main(int argc, char* argv[]){ char line[MAXLINE]; long lineno = 0; int c, except = 0, number = 0, found = 0; while (--argc > 0 && (*++argv)[0] == '-') { while (c = *++argv[0]) { switch (c) { case 'x': except = 1; break; case 'n': number = 1; break; default: printf("find: illegal optional %c\n", c); argc = 0; found = -1; break; } } } if (argc != 1) printf("Usage: find -x -n pattern\n"); else { while (getline_s(line, MAXLINE) > 0) { lineno++; if ((strstr(line, *argv) != NULL) != except) { if (number) printf("%ld:", lineno); printf("%s", line); found++; } } } return found;}int getline_s(char *s, int max){ int c; char *p = s; while ((c = getchar()) != EOF && c != '\n') *s++ = c; if (c == '\n') *s++ = c; *s = '\0'; return s - p;}

编译好以后 输入

./a.out -x -n test          可选参数

./a.out  test     忽略参数

./a.out -xn   组合参数

转载地址:http://yabg.baihongyu.com/

你可能感兴趣的文章
mysql一个字段为空时使用另一个字段排序
查看>>
MySQL一个表A中多个字段关联了表B的ID,如何关联查询?
查看>>
MYSQL一直显示正在启动
查看>>
MySQL一站到底!华为首发MySQL进阶宝典,基础+优化+源码+架构+实战五飞
查看>>
MySQL万字总结!超详细!
查看>>
Mysql下载以及安装(新手入门,超详细)
查看>>
MySQL不会性能调优?看看这份清华架构师编写的MySQL性能优化手册吧
查看>>
MySQL不同字符集及排序规则详解:业务场景下的最佳选
查看>>
Mysql不同官方版本对比
查看>>
MySQL与Informix数据库中的同义表创建:深入解析与比较
查看>>
mysql与mem_细说 MySQL 之 MEM_ROOT
查看>>
MySQL与Oracle的数据迁移注意事项,另附转换工具链接
查看>>
mysql丢失更新问题
查看>>
MySQL两千万数据优化&迁移
查看>>
MySql中 delimiter 详解
查看>>
MYSQL中 find_in_set() 函数用法详解
查看>>
MySQL中auto_increment有什么作用?(IT枫斗者)
查看>>
MySQL中B+Tree索引原理
查看>>
mysql中cast() 和convert()的用法讲解
查看>>
mysql中datetime与timestamp类型有什么区别
查看>>