我将如何在 python 中编写这些 bash 命令

我将如何在 python 中编写这些 bash 命令

我需要用 python 编写 sed, cat

ID_PSEXEC1="hello"
type4="test"

sed "s/^/$ID_PSEXEC1,/" psexec.csv > temp && mv temp psexec.csv
cat psexec.csv > psexec_1.csv
sed "s/^/$type4,/" psexec_1.csv > temp && mv temp psexec_1.csv


cat psexec_1.csv > PsEXEC_Execution.csv

答案1

软件架构组 (SWAG) 创建了bash2py.根据https://www.swag.uwaterloo.ca/bash2py/index.html

Bash2py 是一个 Bash 到 Python 脚本转换器 [...]

安装它并通过它放置你的 bash 脚本。还没有尝试过,所以我不太确定输出脚本的质量。

相关内容