16.4.4. 使用 guestfish 进行 shell 脚本 熟悉以互动方式使用 guestfish 后,将 shell 脚本编写成非常有用。以下是一个简单的 shell 脚本,用于向客户机添加新的 MOTD(一天的消息): #!/bin/bash - set -e guestname="$1" guestfish -d "$guestname" -i <<'EOF' write /etc/motd "Welcome to Acme Incorporated." chmod 0644 /etc/motd EOF 前一个下一个