美文网首页
使用 getopt 获取命令行参数

使用 getopt 获取命令行参数

作者: 墨迹MoJi_5b88 | 来源:发表于2019-03-28 11:21 被阅读0次
test.c
/*
 * Build:
 *   gcc -g -o test test.c
 *
 * Usage:
 *   ./test [-c max number of child] 'keyword' 'log file'
 *
 */

#include <stdio.h>
#include <string.h>
#include <getopt.h>

int main(int argc, char **argv)
{
    int i;
    int ch;
    const char *args = "c:h";
    while ((ch = getopt(argc, argv, args)) != -1) {
        switch (ch) {
            case 'c':
                max_num_child = atoi(optarg);
                break;
            case 'h':
            default:
                usage(argv[0]);
                exit(0);
        }
    }
    if ( (argc - optind) != 2) {
        usage(argv[0]);
        exit(0);
    }

    snprintf(keyword, sizeof(keyword), "%s", argv[optind++]);
    snprintf(log_file, sizeof(log_file), "%s", argv[optind++]);

    printf("#####################################\n");
    printf("#### max number of child: %d\n", max_num_child);
    printf("#### keyword: %s\n", keyword);
    printf("#### log file: %s\n", log_file);
}

相关文章

网友评论

      本文标题:使用 getopt 获取命令行参数

      本文链接:https://www.haomeiwen.com/subject/iwzfbqtx.html