gpt4 book ai didi

python - 将特殊字符传递给 cmd.exe 中的 python 脚本

转载 作者:可可西里 更新时间:2023-11-01 10:36:13 25 4
gpt4 key购买 nike

我需要将“&”字符传递给从 Windows cmd.exe 运行的脚本。你知道如何逃脱吗?插入符号在 cmd.exe 中用于一般转义。

试验 1

x:\abc>python args.py "hello world!" "" ^& end
args.py
hello world!

^&
end

试验 2

x:\abc>python args.py "hello world!" "" "&" end
args.py
hello world!

^&
end

参数.py

import sys
for i in sys.argv:
print i

我有一个 C 程序:从 argv 打印的 a.exe,它似乎正确地获取了参数

用a.exe

x:\abc>a.exe "hello world!" "" "&" end
or
x:\abc>a.exe "hello world!" "" ^& end

产生

a.exe
hello world!

&
end

这是怎么回事,有什么想法吗?

最佳答案

我无法回答 为什么 Windows 上的 Python 正在这样做,但是这种问题(“这种语言,在这个平台上运行,在这些版本中......做错了什么/不同的/很奇怪”)很常见。

我的许多跨不同语言版本和平台运行的代码至少有一点“我在哪里运行?”审讯和一些shims “把事情做好”。从您的主要逻辑中外部化这些特殊情况的处理有助于保持程序简单。所以你可以用这种 shim 来处理这个问题:

import platform
import sys

_WINDOWS = platform.system() == "Windows"

def strip_excess_caret(s):
return s[1:] if s.startswith("^") else s

def clean_argv():
if _WINDOWS:
return [ strip_excess_caret(a) for a in sys.argv ]
else:
return sys.argv

for arg in clean_argv():
print arg

关于python - 将特殊字符传递给 cmd.exe 中的 python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25211353/

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