0

我想知道为什么optarg在以下情况下返回无效路径:--foo=~/.bashrc但如果我在--foo ~/.bashrc.

什么是解决方法,所以它适用于两种情况。

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

int main(int argc, char *argv[]) {
    int opt = 0;
    int long_index = 0;
    char *f; 
    static struct option longopt[] = { 
        {"foo", required_argument, 0,  'd' },
        {0,0,0,0}
    };  
    while ((opt = getopt_long(argc, argv,"d:", longopt, &long_index )) != -1) {
        switch (opt) {
            case 'd' : 
                printf("\n%s\n", optarg);
                f = realpath (optarg, NULL);
                if (f) printf("%s\n", f); 
                break;
            default: 
                exit(1);
        }   
    }   
    return 0;
}

输出:

$ ./a.out --foo=~/.bashrc
  ~/.bashrc

$ ./a.out --foo ~/.bashrc
  /home/user/.bashrc
4

1 回答 1

1

发生这种情况是因为“波浪号扩展”是由 shell 执行的:它本身不是有效的路径。波浪号 ~ 仅在它位于字符串参数的开头时才会扩展为主目录,这看起来像一个路径。例如:

$ echo ~
/home/sigi
$ echo ~/a
/home/sigi/a
$ echo ~root/a
/root/a
$ echo ~a
~a
$ echo a/~
a/~

如果您也想在第一种情况下提供此功能,其中 shell 无法帮助您,或者更一般地说,shell 使用的单词扩展,您可以在此参考中找到所有需要的信息来自己做。

于 2014-01-11T18:36:42.880 回答