我正在学习 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 中做这些事情?