Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的应用程序从字面上接受文件规范参数,而不需要通配符扩展。这是因为运行我的命令的目录不是应该执行 glob 扩展的目录(或机器)。我相信 scp 以某种方式设法做到了这一点,但除了引用参数之外,我无法在我的工具中复制它,但不知何故 scp 不需要引用,所以我也想这样做。
如何防止像 scp 那样对我的命令行参数进行通配符扩展?
你用的是什么外壳?在 bash 中,您可以使用set -o noglob. 否则,请为问题定义提供更多信息。
set -o noglob