我正在学习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.
''')