在Ubuntu中,您可以使用expect命令与Shell脚本配合来自动化交互式任务。以下是一个简单的示例:
sudo apt-get install expect
#!/bin/bash
# Shell脚本中的交互式命令
read -p "Enter your name: " name
echo "Hello, $name!"
#!/usr/bin/expect
spawn ./test.sh
expect "Enter your name: "
send "Alice\r"
expect eof
在这个示例中,expect脚本会自动执行Shell脚本test.sh,并模拟用户输入"Alice"作为名字,然后等待Shell脚本执行完毕。
chmod +x test.sh
chmod +x test.exp
./test.exp
这样,您就可以使用expect命令与Shell脚本配合来完成自动化交互式任务。您可以根据实际需求修改expect脚本中的expect和send语句来模拟不同的用户输入。