如何在 Python 中使用 subprocess.call 执行包含空格的文件名的 Linux 命令?

如何在 python 中使用 subprocess.call 执行包含空格的文件名的 linux 命令?

使用 subprocess.call 执行 linux 命令

如何在 python 中使用 subprocess.call 执行 linux 命令,特别是当要执行的命令包含文件名中有空格的情况。

假设我们想将文件 1 1.txt 和 1 2.txt 合并为 1 3.txt。在 linux 中,命令如下:

cat './temp/1 1.txt' './temp/1 2.txt' > './temp/1 3.txt'

要使用 python 的 subprocess.call 执行此命令,我们需要将命令拆分为一个列表,每个元素都是一个单词或符号。然而,由于文件名包含空格,因此无法直接将 '>' 字符用作分隔符。

解决方法是对 '>' 字符进行转义。可以将 '>' 转义为 >,或在创建命令字符串时使用原始字符串前缀 r。

import subprocess

cmdu = r'cat "./temp/1 1.txt" "./temp/1 2.txt" > "./temp/1 3.txt"'
subprocess.call(cmdu, shell=true)  # 使用 shell=true 将命令解释为 shell 命令

通过使用 shell=true 参数,python 将命令解释为 shell 命令,并且会自动处理特殊字符。

如果不想使用 shell=true,那么需要使用以下命令字符串:

cmdU = ['cat', './TEMP/1 1.txt', './TEMP/1 2.txt', '>','./TEMP/1 3.txt']
subprocess.call(cmdU)

使用 ' ' 字符分隔命令元素,然后将 '>' 字符作为列表中的单独元素。

以上就是如何在 Python 中使用 subprocess.call 执行包含空格的文件名的 Linux 命令?的详细内容,更多请关注其它相关文章!