QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 717|回复: 2

向程序传递参数

[复制链接]
发表于 2003-5-2 16:49:20 | 显示全部楼层 |阅读模式
你好,我最近刚接触linux C编程
当我们用linux  下的程序时可以向程序传递参数,调用不同的功能,
例如
ls -s
ls -l
ls -a
请问,这是怎么实现的?
我尝试用switch来辨别argv[]的值以调用不同的功能,但是因为argv[]是string,"-a"是string
switch无法辨别,请各位赐教。
发表于 2003-5-2 17:51:47 | 显示全部楼层
getopt_long
回复

使用道具 举报

发表于 2003-5-3 02:21:20 | 显示全部楼层
[code:1]
    while ((c = getopt (argc, argv, "d:w:")) != -1) {
        switch (c) {
        case 'w':
            if (strlen (optarg)....
            break;
        case 'd':
            ....
            break;
        case '?':
        default:
            ...
        }
    }
[/code:1]

anyway, see getopt and find an example is the best solution
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-16 01:43 , Processed in 0.036904 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表