gpt4 book ai didi

linux - 如何在命令行参数中传递 "*"。?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:16:51 27 4
gpt4 key购买 nike

看我有下面的代码

#include<stdio.h>
int main ( int argc, char *argv[] )
{
int i=0;
for(i=1;i<argc-1;i++)
printf(" %s \n",argv[i]);
return 0;
}

编译运行如下

gcc test.c
./a.out 1 * 2

现在它的 o/p 伤痕累累..!

o/p 是:

 1 
a.out
Desktop
Documents
Downloads
ipmsg.log
linux-fusion-3.2.6
Music
Pictures
Public
Templates
test.c

最佳答案

在星号周围使用单引号:

./a.out 1 '*' 2

这应该可以防止您的 shell 将其解释为特殊字符。

关于linux - 如何在命令行参数中传递 "*"。?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13989037/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com