将bash脚本转换为Python-如何处理heredocs?

我正在学习Python,同时将一些bash脚本转换为Python Shell脚本.我还不了解的一件事是如何处理这些脚本中使用的heredocs.以下是bash脚本如何使用heredocs的两个示例:

我需要知道如何在Python中做的最重要的事情是第一种情况,其中Heredoc用于提供对命令的标准响应,以便命令可以非交互地运行:

sudo command << 'EOF'
prompt_response1
    prompt_response2
EOF

其次,使用tee来创建需要sudo权限的文件

sudo tee /etc/xdg/autostart/updateNotificationChecker.desktop > /dev/null << 'EOF' 
[Desktop Entry]
Name=Update Notification
Exec=bash /usr/local/bin/updateNotification.sh
Terminal=false
Type=Application
Nodisplay=true
EOF

我将如何在Python中做这些事情?

解决方法:

Python中的Heredoc

使用多行字符串(三引号字符串”’或“”“).请参见Strings from tutorial.

运行命令

import subprocess
subprocess.Popen(['cat'], stdin=subprocess.PIPE).communicate('''
    Hello multiline-string
    simliar to heredoc.
''')

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...